/flash-src/third-party/com/hurlant/util/der/IAsn1Type.as
http://github.com/gimite/web-socket-js · ActionScript · 21 lines · 10 code · 3 blank · 8 comment · 0 complexity · f8f79d1fe2574e14a9e8a8d8a91ae042 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;
-
- }
- }