DBA Data[Home] [Help]

APPS.FND_OAM_METALINK_CREDS dependencies on UTL_RAW

Line 58: -- Note: The call to utl_raw.cast_to_raw as coded below

54:
55: v_key := fnd_crypto.randombytes(24);
56:
57: --
58: -- Note: The call to utl_raw.cast_to_raw as coded below
59: -- may cause problems if database characterset changes.
60: -- Ideally it should be converted to UTF8 first.
61: --
62: -- Proper call. Works in 10g.

Line 63: -- plaintext => utl_raw.cast_to_raw(

59: -- may cause problems if database characterset changes.
60: -- Ideally it should be converted to UTF8 first.
61: --
62: -- Proper call. Works in 10g.
63: -- plaintext => utl_raw.cast_to_raw(
64: -- convert(p_metalink_password, 'AL32UTF8'));
65: --
66:
67: v_encr := fnd_crypto.encrypt(

Line 68: plaintext => utl_raw.cast_to_raw(p_metalink_password),

64: -- convert(p_metalink_password, 'AL32UTF8'));
65: --
66:
67: v_encr := fnd_crypto.encrypt(
68: plaintext => utl_raw.cast_to_raw(p_metalink_password),
69: key => v_key);
70: v_dec := v_key || v_encr;
71: v_enc := fnd_crypto.encode(
72: source => v_dec,

Line 169: v_key := utl_raw.substr(v_dec, 1, 24);

165:
166: v_dec := fnd_crypto.decode(
167: source => v_enc,
168: fmt_type => fnd_crypto.ENCODE_B64);
169: v_key := utl_raw.substr(v_dec, 1, 24);
170: v_encr := utl_raw.substr(v_dec, 25);
171:
172:
173: --

Line 170: v_encr := utl_raw.substr(v_dec, 25);

166: v_dec := fnd_crypto.decode(
167: source => v_enc,
168: fmt_type => fnd_crypto.ENCODE_B64);
169: v_key := utl_raw.substr(v_dec, 1, 24);
170: v_encr := utl_raw.substr(v_dec, 25);
171:
172:
173: --
174: -- Note: The call to utl_raw.cast_to_varchar2 as coded below

Line 174: -- Note: The call to utl_raw.cast_to_varchar2 as coded below

170: v_encr := utl_raw.substr(v_dec, 25);
171:
172:
173: --
174: -- Note: The call to utl_raw.cast_to_varchar2 as coded below
175: -- may cause problems if database characterset changes.
176: -- Ideally it should be converted to UTF8 first.
177: --
178: -- Proper call. Works in 10g.

Line 179: -- p_metalink_password := utl_raw.cast_to_varchar2

175: -- may cause problems if database characterset changes.
176: -- Ideally it should be converted to UTF8 first.
177: --
178: -- Proper call. Works in 10g.
179: -- p_metalink_password := utl_raw.cast_to_varchar2
180: -- (utl_raw.convert(src, userenv('language'),
181: -- 'AMERICAN_AMERICA.AL32UTF8'));
182: --
183:

Line 180: -- (utl_raw.convert(src, userenv('language'),

176: -- Ideally it should be converted to UTF8 first.
177: --
178: -- Proper call. Works in 10g.
179: -- p_metalink_password := utl_raw.cast_to_varchar2
180: -- (utl_raw.convert(src, userenv('language'),
181: -- 'AMERICAN_AMERICA.AL32UTF8'));
182: --
183:
184: p_metalink_password := utl_raw.cast_to_varchar2(fnd_crypto.decrypt(

Line 184: p_metalink_password := utl_raw.cast_to_varchar2(fnd_crypto.decrypt(

180: -- (utl_raw.convert(src, userenv('language'),
181: -- 'AMERICAN_AMERICA.AL32UTF8'));
182: --
183:
184: p_metalink_password := utl_raw.cast_to_varchar2(fnd_crypto.decrypt(
185: cryptext => v_encr,
186: key => v_key));
187:
188: EXCEPTION