From 2a1d8b6d00bc4886128ddb7b7c5f57d96dc83af7 Mon Sep 17 00:00:00 2001 From: Darran Lofthouse Date: Mon, 6 Jan 2025 17:20:52 +0000 Subject: [PATCH] Add a link to a blog post describing how a credential store can be backed by a PKCS#12 KeyStore. --- _posts/2025-01-06-pkcs12-credential-store.adoc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 _posts/2025-01-06-pkcs12-credential-store.adoc diff --git a/_posts/2025-01-06-pkcs12-credential-store.adoc b/_posts/2025-01-06-pkcs12-credential-store.adoc new file mode 100644 index 00000000..4dbbe4c7 --- /dev/null +++ b/_posts/2025-01-06-pkcs12-credential-store.adoc @@ -0,0 +1,14 @@ +--- +layout: post +title: 'PKCS#12 with WildFly Elytron's Credential Store' +date: 2025-01-06 +tags: wildfly credential-store pkcs12 +synopsis: Using a PKCS#12 KeyStore to back a WildFly Elytron credential store. +author: darranl +link: https://lofthouse.dev/2025/01/06/pkcs12-with-wildfly-elytrons-credential-store/ +--- + +The default credential store used in WildFly from WildFly Elytron is the KeyStoreCredentialStore which is backed by a Java KeyStore to hold the credentials. + +This in turn defaults to using the JCEKS KeyStore format, this blog post is to illustrate how we can configure this to use a PKCS#12 store instead both in WildFly and when using the elytron-tool CLI tool directly. +