/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
- /**
- * IAsn1Type
- *
- * An interface for Asn-1 types.
- * Copyright (c) 2007 Henri Torgemane
- *
- * See LICENSE.txt for full license information.
- */
- package com.hurlant.util.der
- {
- import flash.utils.ByteArray;
-
- public interface IAsn1Type
- {
- function getType():uint;
- function getLength():uint;
-
- function toDER():ByteArray;
-
- }
- }