DBA Data[Home] [Help]

APPS.FND_PREFERENCE dependencies on DBMS_OBFUSCATION_TOOLKIT

Line 44: -- Don't decrypt, dbms_obfuscation_toolkit can't handle nulls --

40: end if;
41:
42: eval := fnd_preference.get(p_user_name, p_module_name, p_pref_name);
43: if (eval is null) then
44: -- Don't decrypt, dbms_obfuscation_toolkit can't handle nulls --
45: return null;
46: else
47: dbms_obfuscation_toolkit.desdecrypt(input_string => eval,
48: key_string => p_key,

Line 47: dbms_obfuscation_toolkit.desdecrypt(input_string => eval,

43: if (eval is null) then
44: -- Don't decrypt, dbms_obfuscation_toolkit can't handle nulls --
45: return null;
46: else
47: dbms_obfuscation_toolkit.desdecrypt(input_string => eval,
48: key_string => p_key,
49: decrypted_string => val);
50: return rtrim(val, ' ');
51: end if;

Line 116: -- Don't encrypt it, dbms_obfuscation_toolkit can't handle nulls --

112: return;
113: end if;
114:
115: if (p_pref_value is null) then
116: -- Don't encrypt it, dbms_obfuscation_toolkit can't handle nulls --
117: eval := p_pref_value;
118: else
119: -- Pad the value and encrypt --
120: mymod := mod(length(p_pref_value), 8);

Line 128: dbms_obfuscation_toolkit.desencrypt(input_string => padval,

124: else
125: padval := rpad(p_pref_value, length(p_pref_value) + 8 - mymod, ' ');
126: end if;
127:
128: dbms_obfuscation_toolkit.desencrypt(input_string => padval,
129: key_string => p_key,
130: encrypted_string => eval);
131: end if;
132: