Package org.bouncycastle.cert
Class X509ExtensionUtils
java.lang.Object
org.bouncycastle.cert.X509ExtensionUtils
- Direct Known Subclasses:
BcX509ExtensionUtils,JcaX509ExtensionUtils
General utility class for creating calculated extensions using the standard methods.
Note: This class is not thread safe!
-
Constructor Summary
ConstructorsConstructorDescriptionX509ExtensionUtils(DigestCalculator calculator) Base constructor - for conformance to RFC 5280 use a calculator based on SHA-1. -
Method Summary
Modifier and TypeMethodDescriptioncreateAuthorityKeyIdentifier(SubjectPublicKeyInfo publicKeyInfo) Create an AuthorityKeyIdentifier from the passed in SubjectPublicKeyInfo.createAuthorityKeyIdentifier(SubjectPublicKeyInfo publicKeyInfo, GeneralNames generalNames, BigInteger serial) Create an AuthorityKeyIdentifier from the passed in arguments.createAuthorityKeyIdentifier(X509CertificateHolder certHolder) Create an AuthorityKeyIdentifier from the passed in arguments.createSubjectKeyIdentifier(SubjectPublicKeyInfo publicKeyInfo) Return a RFC 5280 type 1 key identifier.createTruncatedSubjectKeyIdentifier(SubjectPublicKeyInfo publicKeyInfo) Return a RFC 5280 type 2 key identifier.
-
Constructor Details
-
X509ExtensionUtils
Base constructor - for conformance to RFC 5280 use a calculator based on SHA-1.- Parameters:
calculator- a calculator for calculating subject key ids.
-
-
Method Details
-
createAuthorityKeyIdentifier
Create an AuthorityKeyIdentifier from the passed in arguments.- Parameters:
certHolder- the issuer certificate that the AuthorityKeyIdentifier should refer to.- Returns:
- an AuthorityKeyIdentifier.
-
createAuthorityKeyIdentifier
Create an AuthorityKeyIdentifier from the passed in SubjectPublicKeyInfo.- Parameters:
publicKeyInfo- the SubjectPublicKeyInfo to base the key identifier on.- Returns:
- an AuthorityKeyIdentifier.
-
createAuthorityKeyIdentifier
public AuthorityKeyIdentifier createAuthorityKeyIdentifier(SubjectPublicKeyInfo publicKeyInfo, GeneralNames generalNames, BigInteger serial) Create an AuthorityKeyIdentifier from the passed in arguments.- Parameters:
publicKeyInfo- the SubjectPublicKeyInfo to base the key identifier on.generalNames- the general names to associate with the issuer cert's issuer.serial- the serial number of the issuer cert.- Returns:
- an AuthorityKeyIdentifier.
-
createSubjectKeyIdentifier
Return a RFC 5280 type 1 key identifier. As in:(1) The 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).
- Parameters:
publicKeyInfo- the key info object containing the subjectPublicKey field.- Returns:
- the key identifier.
-
createTruncatedSubjectKeyIdentifier
Return a RFC 5280 type 2 key identifier. As in:(2) The 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.
- Parameters:
publicKeyInfo- the key info object containing the subjectPublicKey field.- Returns:
- the key identifier.
-