WLST Password Encryption.
I am trying to use storeUserConfig() to have encrypted files and then use it later in .py script
As such...
edit()
startEdit()
domain=cmo
jdbcSystemResource = domain.createJDBCSystemResource('oraclePool')
jdbcSystemResource.getJDBCResource().setName('oraclePool')
driverParams = jdbcSystemResource.getJDBCResource().getJDBCDriverParams()
driverParams.setPasswordEncrypted('INT3OraclePool', 'userlist.txt', 'sk_file.txt')
where the userlist.txt and sk_file.txt are the key files generated using storeUserConfig()...
obviously this fails because setPasswordEncrypted expects only on parameter .. and encrypted byte [] ...
how will i accomplish this???