/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IStreamCipher.as
http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs · ActionScript · 21 lines · 4 code · 2 blank · 15 comment · 0 complexity · 72e6dc239980db0c3709c77b364186d7 MD5 · raw file
- /**
- * IStreamCipher
- *
- * A "marker" interface for stream ciphers.
- * Copyright (c) 2007 Henri Torgemane
- *
- * See LICENSE.txt for full license information.
- */
- package com.hurlant.crypto.symmetric {
-
- /**
- * A marker to indicate how this cipher works.
- * A stream cipher:
- * - does not use initialization vector
- * - keeps some internal state between calls to encrypt() and decrypt()
- *
- */
- public interface IStreamCipher extends ICipher {
-
- }
- }