Bouncy Castle Cryptography Library 1.77.0

org.bouncycastle.x509
Interface X509AttributeCertificate

All Superinterfaces:
java.security.cert.X509Extension
All Known Implementing Classes:
X509V2AttributeCertificate

Deprecated. use X509CertificateHolder class in the PKIX package.

public interface X509AttributeCertificate
extends java.security.cert.X509Extension

Interface for an X.509 Attribute Certificate.


Method Summary
 void checkValidity()
          Deprecated.  
 void checkValidity(java.util.Date date)
          Deprecated.  
 X509Attribute[] getAttributes()
          Deprecated. Return the attributes contained in the attribute block in the certificate.
 X509Attribute[] getAttributes(java.lang.String oid)
          Deprecated. Return the attributes with the same type as the passed in oid.
 byte[] getEncoded()
          Deprecated. Return an ASN.1 encoded byte array representing the attribute certificate.
 AttributeCertificateHolder getHolder()
          Deprecated. Return the holder of the certificate.
 AttributeCertificateIssuer getIssuer()
          Deprecated. Return the issuer details for the certificate.
 boolean[] getIssuerUniqueID()
          Deprecated.  
 java.util.Date getNotAfter()
          Deprecated. Return the date after which the certificate is not valid.
 java.util.Date getNotBefore()
          Deprecated. Return the date before which the certificate is not valid.
 java.math.BigInteger getSerialNumber()
          Deprecated. Return the serial number for the certificate.
 byte[] getSignature()
          Deprecated.  
 int getVersion()
          Deprecated. Return the version number for the certificate.
 void verify(java.security.PublicKey key, java.lang.String provider)
          Deprecated.  
 
Methods inherited from interface java.security.cert.X509Extension
getCriticalExtensionOIDs, getExtensionValue, getNonCriticalExtensionOIDs, hasUnsupportedCriticalExtension
 

Method Detail

getVersion

public int getVersion()
Deprecated. 
Return the version number for the certificate.
Returns:
the version number.

getSerialNumber

public java.math.BigInteger getSerialNumber()
Deprecated. 
Return the serial number for the certificate.
Returns:
the serial number.

getNotBefore

public java.util.Date getNotBefore()
Deprecated. 
Return the date before which the certificate is not valid.
Returns:
the "not valid before" date.

getNotAfter

public java.util.Date getNotAfter()
Deprecated. 
Return the date after which the certificate is not valid.
Returns:
the "not valid afer" date.

getHolder

public AttributeCertificateHolder getHolder()
Deprecated. 
Return the holder of the certificate.
Returns:
the holder.

getIssuer

public AttributeCertificateIssuer getIssuer()
Deprecated. 
Return the issuer details for the certificate.
Returns:
the issuer details.

getAttributes

public X509Attribute[] getAttributes()
Deprecated. 
Return the attributes contained in the attribute block in the certificate.
Returns:
an array of attributes.

getAttributes

public X509Attribute[] getAttributes(java.lang.String oid)
Deprecated. 
Return the attributes with the same type as the passed in oid.
Parameters:
oid - the object identifier we wish to match.
Returns:
an array of matched attributes, null if there is no match.

getIssuerUniqueID

public boolean[] getIssuerUniqueID()
Deprecated. 

checkValidity

public void checkValidity()
                   throws java.security.cert.CertificateExpiredException,
                          java.security.cert.CertificateNotYetValidException
Deprecated. 

checkValidity

public void checkValidity(java.util.Date date)
                   throws java.security.cert.CertificateExpiredException,
                          java.security.cert.CertificateNotYetValidException
Deprecated. 

getSignature

public byte[] getSignature()
Deprecated. 

verify

public void verify(java.security.PublicKey key,
                   java.lang.String provider)
            throws java.security.cert.CertificateException,
                   java.security.NoSuchAlgorithmException,
                   java.security.InvalidKeyException,
                   java.security.NoSuchProviderException,
                   java.security.SignatureException
Deprecated. 

getEncoded

public byte[] getEncoded()
                  throws java.io.IOException
Deprecated. 
Return an ASN.1 encoded byte array representing the attribute certificate.
Returns:
an ASN.1 encoded byte array.
Throws:
java.io.IOException - if the certificate cannot be encoded.

Bouncy Castle Cryptography Library 1.77.0