我在PL / sql中寻找一个哈希函数来获取一个varchar的哈希值.我在Oracle 10中发现一个名为dbms_crypto的包,其中包含一个函数dbms_crypto.hash,甚至其他包dbms_sqlhash.getHash,但是在我打电话给他们的时候,我有一个消息,因为它找不到它们…
原文链接:https://www.f2er.com/oracle/205474.html有人知道我怎么称呼他们?还有其他包装吗?
这是我的代码
DECLARE l_textToHash VARCHAR2(19) := 'toto123'; l_ccn_raw RAW(128) := utl_raw.cast_to_raw(l_textToHash); l_encrypted_raw RAW(2048); BEGIN dbms_output.put_line('CC: ' || l_ccn_raw); l_encrypted_raw := dbms_crypto.hash(l_ccn_raw,3); dbms_output.put_line('SH1: ' || l_encrypted_raw); END; /
这是消息
Error starting at line 1 in command: DECLARE l_textToHash VARCHAR2(19) := 'toto123'; l_ccn_raw RAW(128) := utl_raw.cast_to_raw(l_textToHash); l_encrypted_raw RAW(2048); BEGIN dbms_output.put_line('CC: ' || l_ccn_raw); l_encrypted_raw := dbms_crypto.hash(l_ccn_raw,3); dbms_output.put_line('SH1: ' || l_encrypted_raw); END; Error report: ORA-06550: line 7,column 22: PLS-00201: identifier 'DBMS_CRYPTO' must be declared ORA-06550: line 7,column 3: PL/sql: Statement ignored 06550. 00000 - "line %s,column %s:\n%s" *Cause: Usually a PL/sql compilation error. *Action:
谢谢!