File: connected-users-websocket/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Set.as

Recommend this page to a friend!
  Classes of Igor Escobar   Terminal Crossword   connected-users-websocket/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Set.as   Download  
File: connected-users-websocket/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Set.as
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Terminal Crossword
Generate a crosswords board on a text console
Author: By
Last change:
Date: 2 years ago
Size: 602 bytes
 

Contents

Class file image Download
/** * 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+"]"; } } }