friends I have this pkgs that I am using ..
but I have a doubt regarding these values as I know what they are ??
in that fucnion what is the padding and the mode?
-- 11G version
v_encryption_type PLS_INTEGER := DBMS_CRYPTO.DES_CBC_PKCS5;
v_encrypted_raw :=
DBMS_CRYPTO.encrypt ( src => UTL_I18N.STRING_TO_RAW (p_input, 'AL32UTF8'),
typ => v_encryption_type,
key => v_key,
iv => v_iv);
Dbms_Output.put_line('incripto--->>>'||v_encrypted_raw || '<<<<<-------');