/flash-src/third-party/com/hurlant/crypto/symmetric/IMode.as

http://github.com/gimite/web-socket-js · ActionScript · 15 lines · 6 code · 0 blank · 9 comment · 0 complexity · 290af516bcda07542c157a1831edfa78 MD5 · raw file

  1. /**
  2. * IMode
  3. *
  4. * An interface for confidentiality modes to implement
  5. * This could become deprecated at some point.
  6. * Copyright (c) 2007 Henri Torgemane
  7. *
  8. * See LICENSE.txt for full license information.
  9. */
  10. package com.hurlant.crypto.symmetric
  11. {
  12. public interface IMode extends ICipher
  13. {
  14. }
  15. }