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 org.apache.servicemix.bundles.bcprov-jdk16
Show all versions of org.apache.servicemix.bundles.bcprov-jdk16
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
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;
}
}