org.bouncycastle.asn1.its.BitmapSspRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-fips Show documentation
Show all versions of bcutil-fips Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.
The newest version!
package org.bouncycastle.asn1.its;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DEROctetString;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.util.Arrays;
/**
*
* BitmapSspRange ::= SEQUENCE {
* sspValue OCTET STRING (SIZE(1..32)),
* sspBitmask OCTET STRING (SIZE(1..32))
* }
*
*/
public class BitmapSspRange
extends ASN1Object
{
private final byte[] sspValue;
private final byte[] sspBitmask;
private BitmapSspRange(ASN1Sequence seq)
{
if (seq.size() != 2)
{
throw new IllegalArgumentException("expected sequence with sspValue and sspBitmask");
}
sspValue = Utils.octetStringFixed(
ASN1OctetString.getInstance(seq.getObjectAt(0)).getOctets());
sspBitmask = Utils.octetStringFixed(
ASN1OctetString.getInstance(seq.getObjectAt(1)).getOctets());
}
public static BitmapSspRange getInstance(Object o)
{
if (o instanceof BitmapSspRange)
{
return (BitmapSspRange)o;
}
else if (o != null)
{
return new BitmapSspRange(ASN1Sequence.getInstance(o));
}
return null;
}
public byte[] getSspValue()
{
return Arrays.clone(sspValue);
}
public byte[] getSspBitmask()
{
return Arrays.clone(sspBitmask);
}
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector avec = new ASN1EncodableVector();
avec.add(new DEROctetString(sspValue));
avec.add(new DEROctetString(sspBitmask));
return new DERSequence(avec);
}
}