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/Set.as
blob: c0bfa4753f398c34b7617ab518ef9c1eba1c48a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * Set
 * 
 * An ASN1 type for an Set, that extends a Sequence
 * Copyright (c) 2007 Henri Torgemane
 * 
 * See LICENSE.txt for full license information.
 */
package com.hurlant.util.der
{
	public dynamic class Set extends Sequence implements IAsn1Type
	{
		public function Set(type:uint = 0x31, length:uint = 0x00) {
			super(type, length);
		}


		public override function toString():String {
			var s:String = DER.indent;
			DER.indent += "    ";
			var t:String = join("\n");
			DER.indent= s;
			return DER.indent+"Set["+type+"]["+len+"][\n"+t+"\n"+s+"]";
		}
		
	}
}