Search in sources :

Example 1 with UInt8

use of com.beanit.asn1bean.compiler.pedefinitions.UInt8 in project jasn1 by openmuc.

the class MobileTest method header.

@Test
public void header() throws Exception {
    ProfileElement headerProfileElement = new ProfileElement();
    ServicesList servicesList = new ServicesList();
    ProfileHeader.EUICCMandatoryGFSTEList GFSTEList = new ProfileHeader.EUICCMandatoryGFSTEList();
    GFSTEList.seqOf = Arrays.asList(new BerObjectIdentifier(new int[] { 2, 23, 143, 1, 2, 1 }), new BerObjectIdentifier(new int[] { 2, 23, 143, 1, 2, 4 }));
    servicesList.usim = new BerNull();
    servicesList.milenage = new BerNull();
    servicesList.javacard = new BerNull();
    headerProfileElement.header = new ProfileHeader(new UInt8(2), new UInt8(0), new BerUTF8String("SIMalliance Sample Profile"), new BerOctetString(HexString.toBytes("89019990001234567893")), null, servicesList, GFSTEList, null, null);
    ReverseByteArrayOutputStream reverseByteArrayOutputStream = new ReverseByteArrayOutputStream(2048, true);
    headerProfileElement.encode(reverseByteArrayOutputStream);
    byte[] code = reverseByteArrayOutputStream.getArray();
    ProfileElement rereadProfileElement = new ProfileElement();
    rereadProfileElement.decode(new ByteArrayInputStream(code), null);
    ReverseByteArrayOutputStream reverseOutputStream2 = new ReverseByteArrayOutputStream(2048, true);
    rereadProfileElement.encode(reverseOutputStream2);
    byte[] code2 = reverseOutputStream2.getArray();
    assertArrayEquals(code, code2);
    String expected = "A0 48 80 01 02 81 01 00 82 1A 53494D616C6C69616E63652053616D706C652050726F66696C65 83 0A 89019990001234567893 A5 06 81 00 84 00 8B 00 A6 10 06 06 67810F010201 06 06 67810F010204".replaceAll("\\s", "");
    assertEquals(expected, HexString.fromBytes(code));
}
Also used : BerObjectIdentifier(com.beanit.asn1bean.ber.types.BerObjectIdentifier) BerUTF8String(com.beanit.asn1bean.ber.types.string.BerUTF8String) BerOctetString(com.beanit.asn1bean.ber.types.BerOctetString) BerUTF8String(com.beanit.asn1bean.ber.types.string.BerUTF8String) BerOctetString(com.beanit.asn1bean.ber.types.BerOctetString) HexString(com.beanit.asn1bean.util.HexString) ProfileElement(com.beanit.asn1bean.compiler.pedefinitions.ProfileElement) UInt8(com.beanit.asn1bean.compiler.pedefinitions.UInt8) ProfileHeader(com.beanit.asn1bean.compiler.pedefinitions.ProfileHeader) ReverseByteArrayOutputStream(com.beanit.asn1bean.ber.ReverseByteArrayOutputStream) ServicesList(com.beanit.asn1bean.compiler.pedefinitions.ServicesList) ByteArrayInputStream(java.io.ByteArrayInputStream) BerNull(com.beanit.asn1bean.ber.types.BerNull) Test(org.junit.jupiter.api.Test)

Aggregations

ReverseByteArrayOutputStream (com.beanit.asn1bean.ber.ReverseByteArrayOutputStream)1 BerNull (com.beanit.asn1bean.ber.types.BerNull)1 BerObjectIdentifier (com.beanit.asn1bean.ber.types.BerObjectIdentifier)1 BerOctetString (com.beanit.asn1bean.ber.types.BerOctetString)1 BerUTF8String (com.beanit.asn1bean.ber.types.string.BerUTF8String)1 ProfileElement (com.beanit.asn1bean.compiler.pedefinitions.ProfileElement)1 ProfileHeader (com.beanit.asn1bean.compiler.pedefinitions.ProfileHeader)1 ServicesList (com.beanit.asn1bean.compiler.pedefinitions.ServicesList)1 UInt8 (com.beanit.asn1bean.compiler.pedefinitions.UInt8)1 HexString (com.beanit.asn1bean.util.HexString)1 ByteArrayInputStream (java.io.ByteArrayInputStream)1 Test (org.junit.jupiter.api.Test)1