summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as44
1 files changed, 0 insertions, 44 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as b/vnfmarket/src/main/webapp/vnfmarket/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as
deleted file mode 100644
index e2f045c9..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as
+++ /dev/null
@@ -1,44 +0,0 @@
-/**
- * Integer
- *
- * An ASN1 type for an Integer, represented with a BigInteger
- * Copyright (c) 2007 Henri Torgemane
- *
- * See LICENSE.txt for full license information.
- */
-package com.hurlant.util.der
-{
- import com.hurlant.math.BigInteger;
- import flash.utils.ByteArray;
-
- public class Integer extends BigInteger implements IAsn1Type
- {
- private var type:uint;
- private var len:uint;
-
- public function Integer(type:uint, length:uint, b:ByteArray) {
- this.type = type;
- this.len = length;
- super(b);
- }
-
- public function getLength():uint
- {
- return len;
- }
-
- public function getType():uint
- {
- return type;
- }
-
- override public function toString(radix:Number=0):String {
- return DER.indent+"Integer["+type+"]["+len+"]["+super.toString(16)+"]";
- }
-
- public function toDER():ByteArray {
- return null;
- }
-
- }
-} \ No newline at end of file