WildFly Password Vault: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * WildFly Security Concepts =Overview=") |
|||
Line 4: | Line 4: | ||
=Overview= | =Overview= | ||
The password vault is a mechanism to store locally passwords and other security-sensitive information, in an encrypted format, and decrypt them at only when they're needed, at runtime, in memory. Such information can referred from CLI commands or applications deployed in JBoss EAP. | |||
The implementation of the JBoss password vault is based on a Java keystore. The keystore is used to store the encryption key itself, and then the secret content itself. | |||
The rest of the article describes how initialize, declare and deploy a vault, how to store information into the vault and how to retrieve it from the vault. | |||
=Procedures= | |||
==Vault Setup== | |||
==Storing Information into the Vault== | |||
==Retrieving Information from the Vault== |
Revision as of 23:49, 14 March 2017
Internal
Overview
The password vault is a mechanism to store locally passwords and other security-sensitive information, in an encrypted format, and decrypt them at only when they're needed, at runtime, in memory. Such information can referred from CLI commands or applications deployed in JBoss EAP.
The implementation of the JBoss password vault is based on a Java keystore. The keystore is used to store the encryption key itself, and then the secret content itself.
The rest of the article describes how initialize, declare and deploy a vault, how to store information into the vault and how to retrieve it from the vault.