~ubuntu-branches/ubuntu/vivid/emscripten/vivid-proposed

« back to all changes in this revision

Viewing changes to third_party/websockify/include/web-socket-js/src/flash-src/third-party/com/hurlant/util/der/Set.as

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2014-01-19 14:12:40 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140119141240-nfiw0p8033oitpfz
Tags: 1.9.0~20140119~7dc8c2f-1
* New snapshot release (Closes: #733714)
* Provide sources for javascript and flash. Done in orig-tar.sh
  Available in third_party/websockify/include/web-socket-js/src/
  (Closes: #735903)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Set
 
3
 * 
 
4
 * An ASN1 type for an Set, that extends a Sequence
 
5
 * Copyright (c) 2007 Henri Torgemane
 
6
 * 
 
7
 * See LICENSE.txt for full license information.
 
8
 */
 
9
package com.hurlant.util.der
 
10
{
 
11
        public dynamic class Set extends Sequence implements IAsn1Type
 
12
        {
 
13
                public function Set(type:uint = 0x31, length:uint = 0x00) {
 
14
                        super(type, length);
 
15
                }
 
16
 
 
17
 
 
18
                public override function toString():String {
 
19
                        var s:String = DER.indent;
 
20
                        DER.indent += "    ";
 
21
                        var t:String = join("\n");
 
22
                        DER.indent= s;
 
23
                        return DER.indent+"Set["+type+"]["+len+"][\n"+t+"\n"+s+"]";
 
24
                }
 
25
                
 
26
        }
 
27
}
 
 
b'\\ No newline at end of file'