org.bouncycastle.oer.its.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-jdk15on Show documentation
Show all versions of bcutil-jdk15on Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.5 and up.
The newest version!
package org.bouncycastle.oer.its;
import java.lang.reflect.Method;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
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);
}
static ASN1Sequence toSequence(List objs)
{
return new DERSequence((ASN1Encodable[])objs.toArray(new ASN1Encodable[0]));
}
static ASN1Sequence toSequence(ASN1Encodable... objs)
{
return new DERSequence(objs);
}
static List fillList(final Class type, final ASN1Sequence sequence)
{
return AccessController.doPrivileged(new PrivilegedAction>()
{
public List run()
{
try
{
List accumulator = new ArrayList();
for (Iterator it = sequence.iterator(); it.hasNext(); )
{
Method m = type.getMethod("getInstance", Object.class);
accumulator.add(type.cast(m.invoke(null, it.next())));
}
return accumulator;
}
catch (Exception ex)
{
throw new IllegalStateException("could not invoke getInstance on type " + ex.getMessage(), ex);
}
}
});
}
}