Examples of BerNull


Examples of org.hxzon.asn1.core.type.BerNull

//  }

    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return new BerNull().init("vmd specific", "vmd specific", tag, stream);
        case Tag.CONTEXT | 1:
            return new Identifier().init("domain specific", "domain specific", tag, stream);
        case Tag.CONTEXT | 2:
            return new BerNull().init("aaSpecific", "aaSpecific", tag, stream);
        default:
            return Asn1Utils.createUnknown(tag, stream);
        }
    }
View Full Code Here

Examples of org.hxzon.asn1.core.type.BerNull

            return Asn1Utils.createBerBoolean("status", "status", tag, stream);
        case Tag.CONTEXT | 1:
            return new GetNameListRequest().init("getNameList", "getNameList", tag, stream);
        case Tag.CONTEXT | 2:
            //Identify-Request ::= NULL
            return new BerNull().init("identify", "identify", tag, stream);
        case Tag.CONTEXT | 3:
            return new RenameRequest().init("rename", "rename", tag, stream);
        case Tag.CONTEXT | 4:
            return new ReadRequest().init("read", "read", tag, stream);
        case Tag.CONTEXT | 5:
View Full Code Here

Examples of org.hxzon.asn1.core.type.BerNull

            break;
        case Tag.UNIVERSAL | Tag.INTEGER:
            node = new BerInteger();
            break;
        case Tag.UNIVERSAL | Tag.NULL:
            node = new BerNull();
            break;
        case Tag.UNIVERSAL | Tag.NUMERICSTRING:
            node = new BerNumericString();
            break;
        case Tag.UNIVERSAL | Tag.OBJECTDESCRIPTOR:
View Full Code Here

Examples of org.hxzon.asn1.core.type.BerNull

    public static BerNode createBerInteger32(String name, String display, int tag, BerInputStream stream) {
        return new BerInteger().limitBitLength(32).init(name, display, tag, stream);
    }

    public static BerNode createBerNull(String name, String display, int tag, BerInputStream stream) {
        return new BerNull().init(name, display, tag, stream);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.