/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PrintableString.as
http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs · ActionScript · 49 lines · 34 code · 7 blank · 8 comment · 0 complexity · c3d20145f3575a30805cf50958a26778 MD5 · raw file
- /**
- * PrintableString
- *
- * An ASN1 type for a PrintableString, held within a String
- * Copyright (c) 2007 Henri Torgemane
- *
- * See LICENSE.txt for full license information.
- */
- package com.hurlant.util.der
- {
- import flash.utils.ByteArray;
-
- public class PrintableString implements IAsn1Type
- {
- protected var type:uint;
- protected var len:uint;
- protected var str:String;
-
- public function PrintableString(type:uint, length:uint) {
- this.type = type;
- this.len = length;
- }
-
- public function getLength():uint
- {
- return len;
- }
-
- public function getType():uint
- {
- return type;
- }
-
- public function setString(s:String):void {
- str = s;
- }
- public function getString():String {
- return str;
- }
-
- public function toString():String {
- return DER.indent+str;
- }
-
- public function toDER():ByteArray {
- return null; // XXX not implemented
- }
- }
- }