DBA Data[Home] [Help]

APPS.IEM_UTILS_PVT dependencies on DBMS_OBFUSCATION_TOOLKIT

Line 77: dbms_obfuscation_toolkit.DESEncrypt(

73: l_random_key := TO_CHAR( ABS(DBMS_RANDOM.Random) );
74:
75: x_encrypted_key := l_random_key;
76:
77: dbms_obfuscation_toolkit.DESEncrypt(
78: input_string => l_raw_data,
79: key_string => l_random_key,
80: encrypted_string => x_encrypted_data );
81:

Line 187: dbms_obfuscation_toolkit.DESDecrypt(

183: -- Initialize API return status to SUCCESS
184: x_return_status := FND_API.G_RET_STS_SUCCESS;
185:
186: -- Decrypt the data
187: dbms_obfuscation_toolkit.DESDecrypt(
188: input_string => p_input_data,
189: key_string => p_decrypted_key,
190: decrypted_string => l_decrypted_data );
191: