We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, there are checkpoint tests for the passwordUtils which is responsible for AES password decryption. See https://github.com/OpenLiberty/open-liberty/blob/7eb1c7bd95bd5903653bd617458d393c8ce66f83/dev/io.openliberty.checkpoint_fat/fat/src/io/openliberty/checkpoint/fat/PasswordUtilsTest.java
However, the existing tests only cover aes decryption for the authData server configuration field. See https://github.com/OpenLiberty/open-liberty/blob/7eb1c7bd95bd5903653bd617458d393c8ce66f83/dev/io.openliberty.checkpoint_fat/publish/servers/checkpointPasswordUtilities/server.xml Example:
<authData id="defaultAuthData" user="APPUSR" password="${default.user.password}" /> <variable name="default.user.password" defaultValue="{aes}APb9ZaYzUL+JsfFD/OOBGaPM0evjmx5AnvmzbaKgffyX" />
We should test decryption in checkpoint tests for other config element like basicRegistry and keystore
basicRegistry
keystore
Example usage of aes decryption for basicRegistry:
open-liberty/dev/com.ibm.ws.security.registry.basic_fat/publish/files/customAESBasicRegistry.xml
Line 26 in 7eb1c7b
open-liberty/dev/com.ibm.ws.security.registry.basic_fat/fat/src/com/ibm/ws/security/registry/basic/fat/FATTest.java
Line 133 in 7eb1c7b
Example usage of aes decryption for ssl config element
<keyStore id="defaultKeyStore" password="{aes}AGhU2J3FXiBOCTxZI4hRLWwezyITmEf4BGfRc5KyAjFq" />
The text was updated successfully, but these errors were encountered:
anjumfatima90
No branches or pull requests
Currently, there are checkpoint tests for the passwordUtils which is responsible for AES password decryption. See https://github.com/OpenLiberty/open-liberty/blob/7eb1c7bd95bd5903653bd617458d393c8ce66f83/dev/io.openliberty.checkpoint_fat/fat/src/io/openliberty/checkpoint/fat/PasswordUtilsTest.java
However, the existing tests only cover aes decryption for the authData server configuration field. See https://github.com/OpenLiberty/open-liberty/blob/7eb1c7bd95bd5903653bd617458d393c8ce66f83/dev/io.openliberty.checkpoint_fat/publish/servers/checkpointPasswordUtilities/server.xml
Example:
We should test decryption in checkpoint tests for other config element like
basicRegistry
andkeystore
Example usage of aes decryption for basicRegistry:
open-liberty/dev/com.ibm.ws.security.registry.basic_fat/publish/files/customAESBasicRegistry.xml
Line 26 in 7eb1c7b
open-liberty/dev/com.ibm.ws.security.registry.basic_fat/fat/src/com/ibm/ws/security/registry/basic/fat/FATTest.java
Line 133 in 7eb1c7b
Example usage of aes decryption for ssl config element
The text was updated successfully, but these errors were encountered: