public static class SelfSignedX509CertificateAndSigningKey.Builder extends Object
Builder
to configure and generate a SelfSignedX509CertificateAndSigningKey
.
This Builder
generates a key pair and then wraps the resulting public key into a
self-signed X.509 certificate.Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_EC_KEY_SIZE
The default key size that will be used if the key algorithm name is EC.
|
static String |
DEFAULT_KEY_ALGORITHM_NAME
The default key algorithm name.
|
static int |
DEFAULT_KEY_SIZE
The default key size that will be used if the key algorithm name is not EC.
|
Modifier and Type | Method and Description |
---|---|
SelfSignedX509CertificateAndSigningKey.Builder |
addExtension(boolean critical,
String extensionName,
String extensionValue)
Add an X.509 certificate extension using the given extension name and string value.
|
SelfSignedX509CertificateAndSigningKey.Builder |
addExtension(X509CertificateExtension extension)
Add an X.509 certificate extension.
|
X509CertificateExtension |
addOrReplaceExtension(boolean critical,
String extensionName,
String extensionValue)
Add or replace an X.509 certificate extension.
|
X509CertificateExtension |
addOrReplaceExtension(X509CertificateExtension extension)
Add or replace an X.509 certificate extension.
|
SelfSignedX509CertificateAndSigningKey |
build()
Attempt to generate a key pair and wrap the resulting public key into a self-signed X.509 certificate.
|
X509CertificateExtension |
removeExtension(String oid)
Remove the X.509 extension with the given OID, if it is registered.
|
SelfSignedX509CertificateAndSigningKey.Builder |
setDn(X500Principal dn)
Set the DN.
|
SelfSignedX509CertificateAndSigningKey.Builder |
setKeyAlgorithmName(String keyAlgorithmName)
Set the key algorithm name to use when generating the key pair.
|
SelfSignedX509CertificateAndSigningKey.Builder |
setKeySize(int keySize)
Set the key size to use when generating the key pair.
|
SelfSignedX509CertificateAndSigningKey.Builder |
setNotValidAfter(ZonedDateTime notValidAfter)
Set the not-valid-after date.
|
SelfSignedX509CertificateAndSigningKey.Builder |
setNotValidBefore(ZonedDateTime notValidBefore)
Set the not-valid-before date.
|
SelfSignedX509CertificateAndSigningKey.Builder |
setSignatureAlgorithmName(String signatureAlgorithmName)
Set the signature algorithm name to use when signing the self-signed certificate.
|
public static final String DEFAULT_KEY_ALGORITHM_NAME
public static final int DEFAULT_EC_KEY_SIZE
public static final int DEFAULT_KEY_SIZE
public SelfSignedX509CertificateAndSigningKey.Builder setKeyAlgorithmName(String keyAlgorithmName)
keyAlgorithmName
- the key algorithm name to use when generating the key pair (must not be null
)public SelfSignedX509CertificateAndSigningKey.Builder setKeySize(int keySize)
keySize
- the key size to use when generating the key pairpublic SelfSignedX509CertificateAndSigningKey.Builder setSignatureAlgorithmName(String signatureAlgorithmName)
signatureAlgorithmName
- the signature algorithm to use when signing the self-signed certificate (must not be null
)public SelfSignedX509CertificateAndSigningKey.Builder setDn(X500Principal dn)
dn
- the DN to use as both the subject DN and the issuer DN (must not be null
)public SelfSignedX509CertificateAndSigningKey.Builder addExtension(X509CertificateExtension extension) throws IllegalArgumentException
extension
- the extension to add (must not be null
)IllegalArgumentException
- if an extension with the same OID has already been addedpublic SelfSignedX509CertificateAndSigningKey.Builder addExtension(boolean critical, String extensionName, String extensionValue) throws IllegalArgumentException
name: BasicConstraints
value: ca:{true|false}[,pathlen:<len>]
where ca
indicates whether or not the subject
is a CA. If ca
is true, pathlen
indicates the path length constraint.
name: KeyUsage
value: usage(,usage)*
where value
is a list of the allowed key usages, where each
usage
value must be one of the following (usage
values are case-sensitive):
digitalSignature
nonRepudiation
keyEncipherment
dataEncipherment
keyAgreement
keyCertSign
cRLSign
encipherOnly
decipherOnly
name: ExtendedKeyUsage
value: usage(,usage)*
where value
is a list of the allowed key purposes, where each
usage
value must be one of the following (usage
values are case-sensitive):
serverAuth
clientAuth
codeSigning
emailProtection
timeStamping
OCSPSigning
name SubjectAlternativeName
value: type:val(,type:val)*
where value
is a list of type:val
pairs, where
type
can be EMAIL
, URI
, DNS
, IP
, or OID
and val
is a string value for the type
.
name: IssuerAlternativeName
value: type:val(,type:val)*
where value
is a list of type:val
pairs, where
type
can be EMAIL
, URI
, DNS
, IP
, or OID
and val
is a string value for the type
.
name: AuthorityInformationAccess
value: method:location-type:location-value(,method:location-type:location-value)*
where
value
is a list of method:location-type:location-value
triples, where method
can be
ocsp
, caIssuers
, or any OID and location-type:location-value
can be any
type:val
pair as defined for the SubjectAlternativeName
extension.
name: SubjectInformationAccess
value: method:location-type:location-value(,method:location-type:location-value)*
where
value
is a list of method:location-type:location-value
triples, where method
can be
timeStamping
, caRepository
, or any OID and location-type:location-value
can be
any type:val
pair as defined for the SubjectAlternativeName
extension.
critical
- whether the extension should be marked as criticalextensionName
- the extension name (must not be null
)extensionValue
- the extension value, as a string (must not be null
)IllegalArgumentException
- if an extension with the same name has already been added or if an
error occurs while attempting to add the extensionpublic X509CertificateExtension addOrReplaceExtension(X509CertificateExtension extension)
extension
- the extension to add (must not be null
)null
if no other extension with the same OID existedpublic X509CertificateExtension addOrReplaceExtension(boolean critical, String extensionName, String extensionValue)
addExtension(boolean, String, String)
for the supported extension names and values.critical
- whether the extension should be marked as criticalextensionName
- the extension name (must not be null
)extensionValue
- the extension value, as a string (must not be null
)null
if no other extension with the same OID existed or if an
error occurs while attempting to add the extensionpublic X509CertificateExtension removeExtension(String oid)
oid
- the OID of the extension to remove (must not be null
)null
if no extension with the same OID existedpublic SelfSignedX509CertificateAndSigningKey.Builder setNotValidBefore(ZonedDateTime notValidBefore)
notValidBefore
- the not-valid-before date (must not be null
)public SelfSignedX509CertificateAndSigningKey.Builder setNotValidAfter(ZonedDateTime notValidAfter)
notValidAfter
- the not-valid-after date (must not be null
)public SelfSignedX509CertificateAndSigningKey build() throws IllegalArgumentException
IllegalArgumentException
- if a required builder parameter is missing or invalid or if an
error occurs while attempting to generate the self-signed X.509 certificateCopyright © 2020 JBoss by Red Hat. All rights reserved.