All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.oer.its.etsi102941.CrlEntry Maven / Gradle / Ivy

There is a newer version: 1.78.1
Show newest version
package io.gatling.recorder.internal.bouncycastle.oer.its.etsi102941;

import io.gatling.recorder.internal.bouncycastle.asn1.ASN1OctetString;
import io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2.basetypes.HashedId;

public class CrlEntry
    extends HashedId
{
    public CrlEntry(byte[] string)
    {
        super(string);
        if (string.length != 8)
        {
            throw new IllegalArgumentException("expected 8 bytes");
        }
    }

    private CrlEntry(ASN1OctetString instance)
    {
        super(instance.getOctets());
    }

    public static CrlEntry getInstance(Object o)
    {
        if (o instanceof CrlEntry)
        {
            return (CrlEntry)o;
        }
        if (o != null)
        {
            return new CrlEntry(ASN1OctetString.getInstance(o));
        }

        return null;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy