I want to create a credential using a hashed password.
Like this but with a hash instead of clear text password:
DBMS_CREDENTIAL.CREATE_CREDENTIAL(
credential_name => 'ANYNAME',
username => 'oracle',
password => <password>,
enabled => TRUE);
Same way you would do it with a user something like this:
ALTER USER anyuser IDENTIFIED BY VALUES ‘hash’;
It would also be helpful to extract the hash from the existing credential.
Thanks.
Edit: Oh, and this is a19 database. I think that's all the relevant information.