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

org.bouncycastle.asn1.its.Utils Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.0.3
Show newest version
package org.bouncycastle.asn1.its;

import org.bouncycastle.util.Arrays;

class Utils
{
    /**
     * 
     *     OCTET STRING (SIZE(n))
     * 
*/ static byte[] octetStringFixed(byte[] octets, int n) { if (octets.length != n) { throw new IllegalArgumentException("octet string out of range"); } return octets; } /** *
     *     OCTET STRING (SIZE(1..32))
     * 
*/ static byte[] octetStringFixed(byte[] octets) { if (octets.length < 1 || octets.length > 32) { throw new IllegalArgumentException("octet string out of range"); } return Arrays.clone(octets); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy