DBA Data[Home] [Help]

APPS.IBY_EXT_BANKACCT_PUB dependencies on DBMS_OBFUSCATION_TOOLKIT

Line 5027: dbms_obfuscation_toolkit.des3decrypt

5023: l_sub_key := iby_security_pkg.get_sys_subkey(p_sys_key,p_sub_key_cipher);
5024:
5025: -- uncipher the segment
5026: l_bank_segment :=
5027: dbms_obfuscation_toolkit.des3decrypt
5028: ( input => p_segment_cipher, key => l_sub_key,
5029: which => dbms_obfuscation_toolkit.ThreeKeyMode
5030: );
5031: l_bank_segment := IBY_SECURITY_PKG.PKCS5_UNPAD(l_bank_segment);

Line 5029: which => dbms_obfuscation_toolkit.ThreeKeyMode

5025: -- uncipher the segment
5026: l_bank_segment :=
5027: dbms_obfuscation_toolkit.des3decrypt
5028: ( input => p_segment_cipher, key => l_sub_key,
5029: which => dbms_obfuscation_toolkit.ThreeKeyMode
5030: );
5031: l_bank_segment := IBY_SECURITY_PKG.PKCS5_UNPAD(l_bank_segment);
5032: l_bank_num := UTL_I18N.RAW_TO_CHAR(l_bank_segment,p_encoding);
5033:

Line 5703: l_bank_segment := dbms_obfuscation_toolkit.des3decrypt ( input => l_segment_cipher, KEY => l_sub_key, which => dbms_obfuscation_toolkit.ThreeKeyMode );

5699: -- uncipher the segment
5700: IF ( G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN
5701: print_debuginfo('uncipher the segment');
5702: END IF;
5703: l_bank_segment := dbms_obfuscation_toolkit.des3decrypt ( input => l_segment_cipher, KEY => l_sub_key, which => dbms_obfuscation_toolkit.ThreeKeyMode );
5704: l_bank_segment := IBY_SECURITY_PKG.PKCS5_UNPAD(l_bank_segment);
5705: l_bank_num := UTL_I18N.RAW_TO_CHAR(l_bank_segment,l_encoding);
5706:
5707: IF (NOT l_bank_acct_num IS NULL) THEN