I am using AES_ENCRYPT ('text','key') function to insert password in MYSQL. I wanted to use same function in ORACLE but it shows Invalid Identifier (AES_ENCRYPT). Please help
1 Answer
First, there is no AES_ENCRYPT in Oracle
Second if you want to encrypt the password in Oracle then you can use the DBMS_CRYPTO
DBMS_CRYPTO provides an interface to encrypt and decrypt stored data, and can be used in conjunction with PL/SQL programs running network communications.
1 Comment
Rahul Tripathi
@RON:- You are welcome. You can refer this doc where you will find examples and explanation of it: docs.oracle.com/cd/B19306_01/network.102/b14266/…