We are attempting to secure an oracle instance and the default password verification function does not meet the exact specifications established.
A new function was written and compiled by sys. This was also set as the "DEFAULT" profiles password_verify_function
alter profile default limit
password_verify_function custom_function;
However, when a new user is created, the password verification does not seem to occur. I receive no warnings or errors during compilation of the function. This is how the user is being created:
create user stackoverflowexample
identified by easy
default tablespace encrypted_ts
quota unlimited on encrypted_ts
profile default;
What gotcha's am I not finding/understanding?