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/ObjectIdentifier.as
blob: 932acd7be870946351c2f290f54f1d01894a90d9 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/**
 * ObjectIdentifier
 * 
 * An ASN1 type for an ObjectIdentifier
 * We store the oid in an Array.
 * Copyright (c) 2007 Henri Torgemane
 * 
 * See LICENSE.txt for full license information.
 */
package com.hurlant.util.der
{
	import flash.utils.ByteArray;
	
	public class ObjectIdentifier implements IAsn1Type
	{
		private var type:uint;
		private var len:uint;
		private var oid:Array;
		
		public function ObjectIdentifier(type:uint, length:uint, b:*) {
			this.type = type;
			this.len = length;
			if (b is ByteArray) {
				parse(b as ByteArray);
			} else if (b is String) {
				generate(b as String);
			} else {
				throw new Error("Invalid call to new ObjectIdentifier");
			}
		}
		
		private function generate(s:String):void {
			oid = s.split(".");
		}
		
		private function parse(b:ByteArray):void {
			// parse stuff
			// first byte = 40*value1 + value2
			var o:uint = b.readUnsignedByte();
			var a:Array = []
			a.push(uint(o/40));
			a.push(uint(o%40));
			var v:uint = 0;
			while (b.bytesAvailable>0) {
				o = b.readUnsignedByte();
				var last:Boolean = (o&0x80)==0;
				o &= 0x7f;
				v = v*128 + o;
				if (last) {
					a.push(v);
					v = 0;
				}
			}
			oid = a;
		}
		
		public function getLength():uint
		{
			return len;
		}
		
		public function getType():uint
		{
			return type;
		}
		
		public function toDER():ByteArray {
			var tmp:Array = [];
			tmp[0] = oid[0]*40 + oid[1];
			for (var i:int=2;i<oid.length;i++) {
				var v:int = parseInt(oid[i]);
				if (v<128) {
					tmp.push(v);
				} else if (v<128*128) {
					tmp.push( (v>>7)|0x80 );
					tmp.push( v&0x7f );
				} else if (v<128*128*128) {
					tmp.push( (v>>14)|0x80 );
					tmp.push( (v>>7)&0x7f | 0x80 );
					tmp.push( v&0x7f);
				} else if (v<128*128*128*128) {
					tmp.push( (v>>21)|0x80 );
					tmp.push( (v>>14) & 0x7f | 0x80 );
					tmp.push( (v>>7) & 0x7f | 0x80 );
					tmp.push( v & 0x7f );
				} else {
					throw new Error("OID element bigger than we thought. :(");
				}
			}
			len = tmp.length;
			if (type==0) {
				type = 6;
			}
			tmp.unshift(len); // assume length is small enough to fit here.
			tmp.unshift(type);
			var b:ByteArray = new ByteArray;
			for (i=0;i<tmp.length;i++) {
				b[i] = tmp[i];
			}
			return b;
		}

		public function toString():String {
			return DER.indent+oid.join(".");
		}
		
		public function dump():String {
			return "OID["+type+"]["+len+"]["+toString()+"]";
		}
		
	}
}