/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/IAsn1Type.as
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
- /**
- * 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;
-
- }
- }