Package | Description |
---|---|
com.teamdev.jxbrowser.net.tls |
Contains classes and interfaces for working with SSL certificates.
|
Modifier and Type | Method and Description |
---|---|
static SslPrivateKey |
SslPrivateKey.of(byte[] derEncoded)
Creates an
SslPrivateKey instance for the given bytes. |
default SslPrivateKey |
ClientCertificate.privateKey()
Returns the SSL private key of this client certificate.
|
Modifier and Type | Method and Description |
---|---|
static ClientCertificate |
ClientCertificate.of(java.security.cert.X509Certificate x509Cert,
SslPrivateKey privateKey)
Returns the
ClientCertificate instance for the given certificate and SSL
private key. |
static ClientCertificate |
ClientCertificate.of(java.security.cert.X509Certificate x509Cert,
SslPrivateKey privateKey,
java.util.List<java.security.cert.X509Certificate> intermediateX509Certs)
Returns the
ClientCertificate instance for the given certificate , SSL
private key, and intermediate certificates. |