hi,
this is my code for encrypt my file but console show this error: ORA-06502
DECLARE
myblob BLOB;
l_blob BLOB;
v_encrypted_blob BLOB;
v_key RAW(32);
BEGIN
INTO myblob
FROM apex_application_temp_files
WHERE NAME = :P41_FILE_NAME_ORIGINAL;
v_key := DBMS_CRYPTO.RANDOMBYTES(32);
v_encrypted_blob := DBMS_CRYPTO.ENCRYPT(
src => l_blob,
typ => DBMS_CRYPTO.ENCRYPT_AES256 + DBMS_CRYPTO.CHAIN_ECB,
key => v_key
);
END;