org.bouncycastle.asn1.cms.Attributes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk16 Show documentation
Show all versions of bcprov-jdk16 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6.
The newest version!
package org.bouncycastle.asn1.cms;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Set;
import org.bouncycastle.asn1.BERSet;
import org.bouncycastle.asn1.DERObject;
public class Attributes
extends ASN1Encodable
{
private ASN1Set attributes;
private Attributes(ASN1Set set)
{
attributes = set;
}
public Attributes(ASN1EncodableVector v)
{
attributes = new BERSet(v);
}
public static Attributes getInstance(Object obj)
{
if (obj instanceof Attributes)
{
return (Attributes)obj;
}
else if (obj != null)
{
return new Attributes(ASN1Set.getInstance(obj));
}
return null;
}
/**
*
* Attributes ::=
* SET SIZE(1..MAX) OF Attribute -- according to RFC 5652
*
* @return
*/
public DERObject toASN1Object()
{
return attributes;
}
}