We use Elytron in wildfly 26-1-2.Final to encrypt several secrets in our XML configuration. We now have several encrypted properties in our .xml files, for example:
<property name="someProperty" value="${ENC::main-resolver:RUxZ....}"/>
(We use a resolver called main-resolver, connected to a "main" keystore for encrypting credentials, hence the "main-resolver" infix).
We have verified that the decryption happens successfully in our Java app, but we were wondering how we can use the JBoss CLI to decrypt an encrypted expression. Please note that we unfortunately cannot use elytron-tool.sh for our purposes, because of a
known issue that has been solved in wildfly 27, which we cannot currently use.
Best,
Jason