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

org.bouncycastle.asn1.tsp.CryptoInfos Maven / Gradle / Ivy

Go to download

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 to JDK 1.8.

There is a newer version: 1.78.1
Show newest version
package org.bouncycastle.asn1.tsp;

import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.ASN1TaggedObject;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.cms.Attribute;

/**
 * Implementation of the CryptoInfos element defined in RFC 4998:
 * 

* CryptoInfos ::= SEQUENCE SIZE (1..MAX) OF Attribute */ public class CryptoInfos extends ASN1Object { private ASN1Sequence attributes; public static CryptoInfos getInstance(final Object obj) { if (obj instanceof CryptoInfos) { return (CryptoInfos)obj; } else if (obj != null) { return new CryptoInfos(ASN1Sequence.getInstance(obj)); } return null; } public static CryptoInfos getInstance( ASN1TaggedObject obj, boolean explicit) { return getInstance(ASN1Sequence.getInstance(obj, explicit)); } private CryptoInfos(final ASN1Sequence attributes) { this.attributes = attributes; } public CryptoInfos(Attribute[] attrs) { attributes = new DERSequence(attrs); } public Attribute[] getAttributes() { Attribute[] rv = new Attribute[attributes.size()]; for (int i = 0; i != rv.length; i++) { rv[i] = Attribute.getInstance(attributes.getObjectAt(i)); } return rv; } public ASN1Primitive toASN1Primitive() { return attributes; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy