wisp-ssl¶
Loads and parses SSL certificates into
a KeyStore
. See SslLoader
for a complete API.
This library is mostly only useful for other libraries that want to use ResourceLoader under the hood.
Usage¶
val sslLoader: SslLoader = SslLoader(ResourceLoader.SYSTEM)
val certStore = sslLoader.loadCertStore(
"classpath:/ssl/client_cert_key_combo.pem",
SslLoader.Companion.FORMAT_PEM,
"password"
)