Uses of Class
iaik.asn1.structures.Attribute

Packages that use Attribute
iaik.pkcs.pkcs10   
iaik.pkcs.pkcs12   
iaik.pkcs.pkcs7   
 

Uses of Attribute in iaik.pkcs.pkcs10
 

Methods in iaik.pkcs.pkcs10 that return Attribute
 Attribute[] CertificateRequest.getAttributes()
          Gets the Atributes of this CertificateRequest.
 Attribute[] CertificateRequest.getAttributes(ObjectID type)
          Gets all the Atributes matching to a specific type (object identifier).
 

Methods in iaik.pkcs.pkcs10 with parameters of type Attribute
 void CertificateRequest.addAttribute(Attribute attribute)
          Adds one Atribute to this CertificateRequest.
 void CertificateRequest.setAttributes(Attribute[] attributes)
          Sets the Atributes for this CertificateRequest.
 

Uses of Attribute in iaik.pkcs.pkcs12
 

Methods in iaik.pkcs.pkcs12 that return Attribute
 Attribute[] Attributes.getAttributes()
          Returns the attributes of this SafeBag object or null if there are no attributes.
 

Methods in iaik.pkcs.pkcs12 with parameters of type Attribute
protected  void Attributes.setAttributes(Attribute[] attributes)
          Set the (optional) attributes for this SafeBag.
 

Uses of Attribute in iaik.pkcs.pkcs7
 

Methods in iaik.pkcs.pkcs7 that return Attribute
 Attribute[] SignerInfo.getAuthenticatedAttributes()
          Returns a set of attributes that are signed by the signer.
 Attribute SignerInfo.getAuthenticatedAttribute(ObjectID oid)
          Returns the first authenticated attribute matching to the given ObjectID, if included in this SignerInfo object.
 Attribute[] SignerInfo.getUnauthenticatedAttributes()
          Returns a set of attributes that are not signed by the signer.
 Attribute SignerInfo.getUnauthenticatedAttribute(ObjectID oid)
          Returns the first unauthenticated attribute matching to the given ObjectID, if included in this SignerInfo object.
 

Methods in iaik.pkcs.pkcs7 with parameters of type Attribute
 void SignerInfo.setAuthenticatedAttributes(Attribute[] attributes)
          Sets a set of attributes to be authenticated along with the content to be signed.
 void SignerInfo.setUnauthenticatedAttributes(Attribute[] attributes)
          Sets a set of attributes that are not signed by the signer.