Package io.quarkus.vault
Class VaultPKISecretEngine
- java.lang.Object
-
- io.quarkus.vault.VaultPKISecretEngine
-
-
Constructor Summary
Constructors Constructor Description VaultPKISecretEngine(VaultPKISecretReactiveEngine engine)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigCertificateAuthority(String pemBundle)Configures the engine's CA.voidconfigCRL(ConfigCRLOptions options)Configures engine's CRL.voidconfigURLs(ConfigURLsOptions options)Configures engine's URLs for issuing certificates, CRL distribution points, and OCSP servers.voiddeleteRole(String role)Deletes a role.voiddeleteRoot()Deletes the engine's current CA.GeneratedCertificategenerateCertificate(String role, GenerateCertificateOptions options)Generates a public/private key pair and certificate issued from the engine's CA using the provided options.GeneratedIntermediateCSRResultgenerateIntermediateCSR(GenerateIntermediateCSROptions options)Generates a Certificate Signing Request and private key for the engine's CA.GeneratedRootCertificategenerateRoot(GenerateRootOptions options)Generates a self-signed root as the engine's CA.CertificateData.PEMgetCertificate(String serial)Retrieve a specific certificate (PEM encoded).CertificateData.PEMgetCertificateAuthority()Retrieves the engine's CA certificate (PEM encoded).CertificateDatagetCertificateAuthority(DataFormat format)Retrieves the engine's CA certificate.CAChainData.PEMgetCertificateAuthorityChain()Retrieves the engine's CA chain (PEM encoded).CRLData.PEMgetCertificateRevocationList()Retrieves the engine's CRL (PEM encoded).CRLDatagetCertificateRevocationList(DataFormat format)Retrieves the engine's CRL.List<String>getCertificates()List all issued certificate serial numbers.RoleOptionsgetRole(String role)Retrieve current options for a role.List<String>getRoles()Lists existing role names.ConfigCRLOptionsreadCRLConfig()Read engine's CRL configuration.ConfigURLsOptionsreadURLsConfig()Read engine's configured URLs for issuing certificates, CRL distribution points, and OCSP servers.OffsetDateTimerevokeCertificate(String serialNumber)Revokes a certificate.booleanrotateCertificateRevocationList()Forces a rotation of the associated CRL.voidsetSignedIntermediateCA(String pemCert)Sets the engine's intermediate CA certificate, signed by another CA.SignedCertificatesignIntermediateCA(String pemSigningRequest, SignIntermediateCAOptions options)Generates an intermediate CA certificate issued from the engine's CA using the provided Certificate Signing Request and options.SignedCertificatesignRequest(String role, String pemSigningRequest, GenerateCertificateOptions options)Generates a certificate issued from the engine's CA using the provided Certificate Signing Request and options.voidtidy(TidyOptions options)Tidy up the storage backend and/or CRL by removing certificates that have expired and are past a certain buffer period beyond their expiration time.voidupdateRole(String role, RoleOptions options)Updates, or creates, a role.
-
-
-
Constructor Detail
-
VaultPKISecretEngine
@Inject public VaultPKISecretEngine(VaultPKISecretReactiveEngine engine)
-
-
Method Detail
-
getCertificateAuthority
public CertificateData.PEM getCertificateAuthority()
Retrieves the engine's CA certificate (PEM encoded).- Returns:
- Certificate authority certificate.
-
getCertificateAuthority
public CertificateData getCertificateAuthority(DataFormat format)
Retrieves the engine's CA certificate.- Parameters:
format- Format of the returned certificate data.- Returns:
- Certificate authority certificate.
-
configCertificateAuthority
public void configCertificateAuthority(String pemBundle)
Configures the engine's CA.- Parameters:
pemBundle- PEM encoded bundle including the CA, with optional chain, and private key.
-
configURLs
public void configURLs(ConfigURLsOptions options)
Configures engine's URLs for issuing certificates, CRL distribution points, and OCSP servers.- Parameters:
options- URL options.
-
readURLsConfig
public ConfigURLsOptions readURLsConfig()
Read engine's configured URLs for issuing certificates, CRL distribution points, and OCSP servers.- Returns:
- URL options.
-
configCRL
public void configCRL(ConfigCRLOptions options)
Configures engine's CRL.- Parameters:
options- CRL options.
-
readCRLConfig
public ConfigCRLOptions readCRLConfig()
Read engine's CRL configuration.- Returns:
- URL options.
-
getCertificateAuthorityChain
public CAChainData.PEM getCertificateAuthorityChain()
Retrieves the engine's CA chain (PEM encoded).- Returns:
- Certificate authority chain.
-
getCertificateRevocationList
public CRLData.PEM getCertificateRevocationList()
Retrieves the engine's CRL (PEM encoded).- Returns:
- Certificate revocation list.
-
getCertificateRevocationList
public CRLData getCertificateRevocationList(DataFormat format)
Retrieves the engine's CRL.- Parameters:
format- Format of the returned crl data.- Returns:
- Certificate revocation list.
-
rotateCertificateRevocationList
public boolean rotateCertificateRevocationList()
Forces a rotation of the associated CRL.
-
getCertificates
public List<String> getCertificates()
List all issued certificate serial numbers.- Returns:
- List of certificate serialize numbers.
-
getCertificate
public CertificateData.PEM getCertificate(String serial)
Retrieve a specific certificate (PEM encoded).- Parameters:
serial- Serial number of certificate.- Returns:
- Certificate or null if no certificate exists.
-
generateCertificate
public GeneratedCertificate generateCertificate(String role, GenerateCertificateOptions options)
Generates a public/private key pair and certificate issued from the engine's CA using the provided options.- Parameters:
role- Name of role used to create certificate.options- Certificate generation options.- Returns:
- Generated certificate and private key.
-
signRequest
public SignedCertificate signRequest(String role, String pemSigningRequest, GenerateCertificateOptions options)
Generates a certificate issued from the engine's CA using the provided Certificate Signing Request and options.- Parameters:
role- Name of role used to create certificate.pemSigningRequest- Certificate Signing Request (PEM encoded).options- Certificate generation options.- Returns:
- Generated certificate.
-
revokeCertificate
public OffsetDateTime revokeCertificate(String serialNumber)
Revokes a certificate.- Parameters:
serialNumber- Serial number of certificate.- Returns:
- Time of certificates revocation.
-
updateRole
public void updateRole(String role, RoleOptions options)
Updates, or creates, a role.- Parameters:
role- Name of role.options- Options for role.
-
getRole
public RoleOptions getRole(String role)
Retrieve current options for a role.- Parameters:
role- Name of role.- Returns:
- Options for the role or null if role does not exist.
-
deleteRole
public void deleteRole(String role)
Deletes a role.- Parameters:
role- Name of role.
-
generateRoot
public GeneratedRootCertificate generateRoot(GenerateRootOptions options)
Generates a self-signed root as the engine's CA.- Parameters:
options- Generation options.- Returns:
- Generated root certificate.
-
deleteRoot
public void deleteRoot()
Deletes the engine's current CA.
-
signIntermediateCA
public SignedCertificate signIntermediateCA(String pemSigningRequest, SignIntermediateCAOptions options)
Generates an intermediate CA certificate issued from the engine's CA using the provided Certificate Signing Request and options.- Parameters:
pemSigningRequest- Certificate Signing Request (PEM encoded).options- Signing options.- Returns:
- Generated certificate.
-
generateIntermediateCSR
public GeneratedIntermediateCSRResult generateIntermediateCSR(GenerateIntermediateCSROptions options)
Generates a Certificate Signing Request and private key for the engine's CA. Use this to generate a CSR and for the engine's CA that can be used by another CA to issue an intermediate CA certificate. After generating the intermediate CAsetSignedIntermediateCA(String)must be used to set the engine's CA certificate. This will overwrite any previously existing CA private key for the engine.- Parameters:
options- Options for CSR generation.- Returns:
- Generated CSR and, if key export is enabled, private key.
- See Also:
setSignedIntermediateCA(String)
-
setSignedIntermediateCA
public void setSignedIntermediateCA(String pemCert)
Sets the engine's intermediate CA certificate, signed by another CA. After generating a CSR (viagenerateIntermediateCSR(GenerateIntermediateCSROptions)), this method must be used to set the engine's CA.- Parameters:
pemCert- Signed certificate (PEM encoded).- See Also:
generateIntermediateCSR(GenerateIntermediateCSROptions)
-
tidy
public void tidy(TidyOptions options)
Tidy up the storage backend and/or CRL by removing certificates that have expired and are past a certain buffer period beyond their expiration time.- Parameters:
options- Tidy options.
-
-