hello The following is the string encryption process,
STEP1.
elytron-tool.bat credential-store --create --location=D:/wildfly-26.1.3.Final/standalone/configuration/cs.jceks --password=storePassword
STEP2.
elytron-tool.bat credential-store --location=D:/wildfly-26.1.3.Final/standalone/configuration/cs.jceks --password=storePassword --add myDbPassword --secret tagetikcpm
STEP3. [mlns="urn:wildfly:elytron:15.1"] add
<credential-stores>
<credential-store name="myCredStore" relative-to="jboss.server.config.dir" location="cs.jceks" create="true">
<implementation-properties>
<property name="keyStoreType" value="JCEKS"/>
</implementation-properties>
<credential-reference clear-text="storePassword"/>
</credential-store>
</credential-stores>
STEP4.
<password></password>
change
<credential-reference store="myCredStore" alias="myDbPassword"/>
After the encryption process, wildfly 26.1.3 can operate.
How to decrypt it?