0

In order to provide key store information we have store-password in plain text file. To secure the key store either we need to encrypt the store password or move them in db. Is there any way to access this key store information from Database during run time. I tried below ref for encrypting password in crypto.properties but that is not helping.

Encrypting passwords in Crypto property files

ArmStrong
  • 47
  • 9

1 Answers1

0

There is no support there by default, you would have to write your own implementation of PasswordEncryptor instead to communicate with the DB:

https://svn.apache.org/repos/asf/webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/crypto/PasswordEncryptor.java

Colm O hEigeartaigh
  • 1,882
  • 1
  • 12
  • 7