![JAR search and dependency download from the Maven repository](/logo.png)
org.spongycastle.asn1.cms.Attributes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scprov-jdk15 Show documentation
Show all versions of scprov-jdk15 Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle intended for Android.
Android ships with a stripped-down version of Bouncy Castle - this causes classloader collisions if you try to add
an alternative (updated/complete) Bouncy Castle jar.
This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5.
package org.spongycastle.asn1.cms;
import org.spongycastle.asn1.ASN1Encodable;
import org.spongycastle.asn1.ASN1EncodableVector;
import org.spongycastle.asn1.ASN1Set;
import org.spongycastle.asn1.BERSet;
import org.spongycastle.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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy