Examples of FakeBerInteger


Examples of org.hxzon.asn1.core.type.ext.FakeBerInteger

    public static BerNode createBerIecTimeOfDay(String name, String display, int tag, BerInputStream stream) {
        return new TimeOfDay().init(name, display, tag, stream);
    }

    public static BerNode createFakeBerInteger(String name, String display, long value, int offset, int len) {
        FakeBerNode node = new FakeBerInteger(value);
        node.setId(name);
        node.setName(display);
        node.setTagOffset(offset);
        node.setTotalLen(len);
        return node;
    }
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.