Hi All,
Is there a way to dynamically decrypt password at web application when secret stored in JBoss Wildfly 7.4 Elytron store with extension like "*.cs"?
Example:
- Created Elytron store called credstore and store type credstore.cs
- Stored web service user name and password in the credstore.cs using alias called username and password
- added system-property as kay/value pair as follow...
<system-property>
<property name="wsusername" value="<Plain text WS username/>
<property name="wspassword" value="{credstore}:{password}" />
</system-property>
4. programmatically accessing wspassword via System.getProperty("wspassword"), is not real decrypted password that i store in Elytron, instead i see same as system property value from above as example
Is there a way to dynamically access actual secret stored in Elytron cred store using alias in java web appl?