|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--iaik.x509.V3Extension | +--iaik.x509.extensions.InfoAccess | +--iaik.x509.extensions.AuthorityInfoAccess
This class implements the AuthorityInfoAccess
Extension.
The AuthorityInfoAccess
extension is a non critical
private internet extension.
The AuthorityInfoAccess extension is associated with a specific certificateExtension
object identifier, derived from:
id-pkix OBJECT IDENTIFIER ::= { iso(1) identified-organization(3) dod(6) internet(1) security(5) mechanisms(5) pkix(7) } id-pe OBJECT IDENTIFIER ::= { id-pkix 1 } id-pe-authorityInfoAccess OBJECT IDENTIFIER ::= { id-pe 1 }
which corresponds to the OID string "1.3.6.1.5.5.5.7.1.1".
The X.509 Certificate and CRL profile presented in RFC 2459 specifies the
AuthorityInfoAccess extension for identifiying how to access CA
information and services for the issuer of the certificate in
which the extension appears.
ASN.1 definition:
AuthorityInfoAccessSyntax ::= SEQUENCE SIZE (1..MAX) OF AccessDescription AccessDescription ::= SEQUENCE { accessMethod OBJECT IDENTIFIER, accessLocation GeneralName }
Each entry in the sequence AuthorityInfoAccessSyntax describes the format and location of additional information about the CA who issued the certificate in which this extension appears. The type and format of the information is specified by the accessMethod field; the accessLocation field specifies the location of the information. The retrieval mechanism may be implied by the accessMethod or specified by accessLocation.
The PKIX profile already has defined one accessMethod OID, id-ad-caIssuers to be used when the additional information lists CAs that have issued certificates superior to the CA that issued the certificate containing this extension. The referenced CA Issuers description is intended to aid certificate users in the selection of a certification path that terminates at a point trusted by the certificate user.
More information can be found in RFC 2459, section 4.2.2.1 "AuthorityInfoAccess".
An AuthorityInfoAccess
object may be created by either using the empty default
constructor, or by directly supplying one access descritption which has to be of
type AccessDescription
, e.g.:
ObjectID accessMethod = ObjectID.caIssuers; GeneralName accessLocation = ...; AccessDescription accessDescription = new AccessDescription(accessMethod, accessLocation); AuthorityInfoAccess authorityInfoAccess = new AuthorityInfoAccess(accessDescription);
Any further access description can be added by using the addAccessDescription
method:
authorityInfoAccess.addAccessDescription(...); ...For adding a
AuthorityInfoAccess
extension object to a X509Certificate, use
the addExtension
method of the X509Certificate
class:
X505Certificate cert = new X509Certificate(); ... cert.addExtension(authorityInfoAccess);
AccessDescription
,
GeneralName
,
ObjectID
,
V3Extension
,
X509Extensions
,
X509Certificate
,
InfoAccess
Field Summary | |
static ObjectID |
oid
The object identifier of this AuthorityInfoAccess extension. |
Fields inherited from class iaik.x509.V3Extension |
critical |
Constructor Summary | |
AuthorityInfoAccess()
Default constructor. |
|
AuthorityInfoAccess(AccessDescription accessDescription)
Creates an AuthorityInfoAccess object and adds a AccessDescription.
|
Method Summary | |
ObjectID |
getObjectID()
Returns the object ID of this AuthorityInfoAccess extension |
int |
hashCode()
Returns a hashcode for this identity. |
Methods inherited from class iaik.x509.extensions.InfoAccess |
addAccessDescription, getAccessDescription, getAccessDescriptions, init, removeAllAccessDescriptions, toASN1Object, toString |
Methods inherited from class iaik.x509.V3Extension |
getName, isCritical, setCritical |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final ObjectID oid
Constructor Detail |
public AuthorityInfoAccess()
AuthorityInfoAccess
object.
For adding a access description use the addAccessDescription
method. Any AccessDescription to be
added has to be of type iaik.asn1.structures.AccessDescription
, e.g.:
ObjectID accessMethod = ObjectID.caIssuers; GeneralName accessLocation = ...; AccessDescription accessDescription = new AccessDescription(accessMethod, accessLocation); AuthorityInfoAccess authorityInfoAccess = new AuthorityInfoAccess(); authorityInfoAccess.addAccessDescription(accessDescription); ...
AccessDescription
public AuthorityInfoAccess(AccessDescription accessDescription) throws IllegalArgumentException
AuthorityInfoAccess
object and adds a AccessDescription.
The AccessDescription to be added has to be of type
iaik.asn1.structures.AccessDescription
, e.g.:
ObjectID accessMethod = ObjectID.caIssuers; GeneralName accessLocation = ...; AccessDescription accessDescription = new AccessDescription(accessMethod, accessLocation); AuthorityInfoAccess authorityInfoAccess = new AuthorityInfoAccess(accessDescription); ...
accessDescription
- the AccessDescription to addIllegalArgumentException
- if a null object is suppliedAccessDescription
Method Detail |
public ObjectID getObjectID()
AuthorityInfoAccess
extensiongetObjectID
in class V3Extension
public int hashCode()
hashCode
in class V3Extension
|
This Javadoc may contain text parts from Internet Standard specifications (RFC 2459, 3280, 3039, 2560, 1521, 821, 822, 2253, 1319, 1321, ,2630, 2631, 2268, 3058, 2984, 2104, 2144, 2040, 2311, 2279, see copyright note) and RSA Data Security Public-Key Cryptography Standards (PKCS#1,3,5,7,8,9,10,12, see copyright note). | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |