-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a link to a blog post describing how a credential store can be
backed by a PKCS#12 KeyStore.
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. | ||
|