aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/IAsn1Type.as
blob: f4f2112aa35d3b41b75f5b2059bf8b817d1eb973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * 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;
		
	}
}