Record Class PemSslStoreDetails

java.lang.Object
java.lang.Record
cn.taketoday.core.ssl.pem.PemSslStoreDetails
记录组件:
type - the key store type, for example JKS or PKCS11. A null value will use KeyStore.getDefaultType()).
certificate - the certificate content (either the PEM content itself or something that can be loaded by ResourceUtils.getURL(java.lang.String))
privateKey - the private key content (either the PEM content itself or something that can be loaded by ResourceUtils.getURL(java.lang.String))
privateKeyPassword - a password used to decrypt an encrypted private key

public record PemSslStoreDetails(String type, String certificate, String privateKey, String privateKeyPassword) extends Record
Details for an individual trust or key store in a PemSslStoreBundle.
从以下版本开始:
4.0
作者:
Scott Frederick, Phillip Webb, Harry Yang