PageRenderTime 28ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/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
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  1. /**
  2. * IStreamCipher
  3. *
  4. * A "marker" interface for stream ciphers.
  5. * Copyright (c) 2007 Henri Torgemane
  6. *
  7. * See LICENSE.txt for full license information.
  8. */
  9. package com.hurlant.crypto.symmetric {
  10. /**
  11. * A marker to indicate how this cipher works.
  12. * A stream cipher:
  13. * - does not use initialization vector
  14. * - keeps some internal state between calls to encrypt() and decrypt()
  15. *
  16. */
  17. public interface IStreamCipher extends ICipher {
  18. }
  19. }