![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.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 java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
The newest version!
package org.bouncycastle.asn1.cms;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Set;
import org.bouncycastle.asn1.DLSet;
/**
* RFC 5652 defines
* 5 "SET OF Attribute" entities with 5 different names.
* This is common implementation for them all:
*
* SignedAttributes ::= SET SIZE (1..MAX) OF Attribute
* UnsignedAttributes ::= SET SIZE (1..MAX) OF Attribute
* UnprotectedAttributes ::= SET SIZE (1..MAX) OF Attribute
* AuthAttributes ::= SET SIZE (1..MAX) OF Attribute
* UnauthAttributes ::= SET SIZE (1..MAX) OF Attribute
*
* Attributes ::=
* SET SIZE(1..MAX) OF Attribute
*
*/
public class Attributes
extends ASN1Object
{
private ASN1Set attributes;
private Attributes(ASN1Set set)
{
attributes = set;
}
public Attributes(ASN1EncodableVector v)
{
attributes = new DLSet(v);
}
/**
* Return an Attribute set object from the given object.
*
* Accepted inputs:
*
* - null → null
*
- {@link Attributes} object
*
- {@link org.bouncycastle.asn1.ASN1Set#getInstance(java.lang.Object) ASN1Set} input formats with Attributes structure inside
*
*
* @param obj the object we want converted.
* @exception IllegalArgumentException if the object cannot be converted.
*/
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;
}
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;
}
/**
* Produce an object suitable for an ASN1OutputStream.
*/
public ASN1Primitive toASN1Primitive()
{
return attributes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy