public interface CertificateManager
| Modifier and Type | Method and Description |
|---|---|
Optional<X509Certificate> |
getCertificate(ByteString thumbprint)
Get the
X509Certificate identified by thumbprint. |
Optional<X509Certificate[]> |
getCertificateChain(ByteString thumbprint)
Get the
X509Certificate identified by thumbprint as well as any certificates in its chain. |
Set<X509Certificate> |
getCertificates() |
Optional<KeyPair> |
getKeyPair(ByteString thumbprint)
Get the
KeyPair belonging to the certificate identified by thumbprint. |
Set<KeyPair> |
getKeyPairs() |
Optional<KeyPair> getKeyPair(ByteString thumbprint)
KeyPair belonging to the certificate identified by thumbprint.
thumbprint is a SHA1 hash of the encoded certificate.
thumbprint - the thumbprint of the certificate.KeyPair belonging to the certificate identified by thumbprint.Optional<X509Certificate> getCertificate(ByteString thumbprint)
X509Certificate identified by thumbprint.
thumbprint is a SHA1 hash of the encoded certificate.
thumbprint - the thumbprint of the certificate.X509Certificate identified by thumbprint.Optional<X509Certificate[]> getCertificateChain(ByteString thumbprint)
X509Certificate identified by thumbprint as well as any certificates in its chain.thumbprint - the thumbprint of the certificate.X509Certificate identified by thumbprint as well as any certificates in its chain.Set<X509Certificate> getCertificates()
X509Certificates.Copyright © 2025. All rights reserved.