PageRenderTime 41ms CodeModel.GetById 37ms RepoModel.GetById 0ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/IAsn1Type.as

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
ActionScript | 21 lines | 10 code | 3 blank | 8 comment | 0 complexity | 582937532bfcb47ea94902e6a3e2b77f MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  1. /**
  2. * IAsn1Type
  3. *
  4. * An interface for Asn-1 types.
  5. * Copyright (c) 2007 Henri Torgemane
  6. *
  7. * See LICENSE.txt for full license information.
  8. */
  9. package com.hurlant.util.der
  10. {
  11. import flash.utils.ByteArray;
  12. public interface IAsn1Type
  13. {
  14. function getType():uint;
  15. function getLength():uint;
  16. function toDER():ByteArray;
  17. }
  18. }