|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.bouncycastle.asn1.ASN1Encodable
be.cardon.asn1.x509.extensions.SubjectKeyIdentifier
public class SubjectKeyIdentifier
Extension SubjectKeyIdentifier
.
Documentation from RFC 3280:
The subject key identifier extension provides a means of identifying certificates that contain a particular public key.
To facilitate certification path construction, this extension MUST appear in all conforming CA certificates, that is, all certificates including the basic constraints extension (section 4.2.1.10) where the value of cA is TRUE. The value of the subject key identifier MUST be the value placed in the key identifier field of the Authority Key Identifier extension (section 4.2.1.1) of certificates issued by the subject of this certificate.
For CA certificates, subject key identifiers SHOULD be derived from the public key or a method that generates unique values. Two common methods for generating key identifiers from the public key are:
keyIdentifier
is composed of the 160-bit SHA-1 hash of the
value of the BIT STRING subjectPublicKey
(excluding the tag,
length, and number of unused bits).keyIdentifier
is composed of a four bit type field with
the value 0100 followed by the least significant 60 bits of the
SHA-1 hash of the value of the BIT STRING subjectPublicKey
(excluding the tag, length, and number of unused bit string bits).One common method for generating unique values is a monotonically increasing sequence of integers.
For end entity certificates, the subject key identifier extension provides a means for identifying certificates containing the particular public key used in an application. Where an end entity has obtained multiple certificates, especially from multiple CAs, the subject key identifier provides a means to quickly identify the set of certificates containing a particular public key. To assist applications in identifying the appropriate end entity certificate, this extension SHOULD be included in all end entity certificates.
For end entity certificates, subject key identifiers SHOULD be derived from the public key. Two common methods for generating key identifiers from the public key are identified above.
Where a key identifier has not been previously established, this specification RECOMMENDS use of one of these methods for generating keyIdentifiers. Where a key identifier has been previously established, the CA SHOULD use the previously established identifier.
This extension MUST NOT be marked critical.
The ASN.1 definitions are:
id-ce-subjectKeyIdentifier OBJECT IDENTIFIER ::= { id-ce 14 } SubjectKeyIdentifier ::= KeyIdentifier KeyIdentifier ::= OCTET STRING
AuthorityKeyIdentifier
Field Summary |
---|
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable |
---|
BER, DER |
Constructor Summary | |
---|---|
SubjectKeyIdentifier(org.bouncycastle.asn1.ASN1OctetString keyid)
Creates an new object with the given KeyIdentifier . |
|
SubjectKeyIdentifier(byte[] keyid)
Creates an new object with the given KeyIdentifier . |
|
SubjectKeyIdentifier(SubjectPublicKeyInfo spki)
Calulates the KeyIdentifier using a SHA1 hash over the BIT STRING
from SubjectPublicKeyInfo as defined in RFC 3280. |
Method Summary | |
---|---|
static SubjectKeyIdentifier |
getInstance(org.bouncycastle.asn1.ASN1TaggedObject obj,
boolean explicit)
Creates an new object from an existing ASN.1 tagged object. |
static SubjectKeyIdentifier |
getInstance(java.lang.Object obj)
Creates an new object from an existing ASN1OctetString
or SubjectKeyIdentifier object. |
byte[] |
getKeyIdentifier()
Returns the KeyIdentifier . |
org.bouncycastle.asn1.DERObject |
toASN1Object()
|
Methods inherited from class org.bouncycastle.asn1.ASN1Encodable |
---|
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCode |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SubjectKeyIdentifier(org.bouncycastle.asn1.ASN1OctetString keyid)
KeyIdentifier
.
public SubjectKeyIdentifier(byte[] keyid)
KeyIdentifier
.
public SubjectKeyIdentifier(SubjectPublicKeyInfo spki) throws java.security.NoSuchAlgorithmException
KeyIdentifier
using a SHA1 hash over the BIT STRING
from SubjectPublicKeyInfo as defined in RFC 3280.
java.security.NoSuchAlgorithmException
- if no SHA-1 MessageDigest
service found.Method Detail |
---|
public static SubjectKeyIdentifier getInstance(org.bouncycastle.asn1.ASN1TaggedObject obj, boolean explicit)
public static SubjectKeyIdentifier getInstance(java.lang.Object obj)
ASN1OctetString
or SubjectKeyIdentifier
object.
java.lang.IllegalArgumentException
- if the object is invalid, or null
.public byte[] getKeyIdentifier()
KeyIdentifier
.
public org.bouncycastle.asn1.DERObject toASN1Object()
toASN1Object
in class org.bouncycastle.asn1.ASN1Encodable
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |