DBA Data[Home] [Help]

APPS.POS_PASSWORD_UTIL_PKG dependencies on FND_CRYPTO

Line 53: lv_pwd := substr(remove_repeating_char('P1' || substr(icx_call.encrypt(fnd_crypto.smallrandomnumber), 4)), 1, ln_pwd_length+1);

49: ln_pwd_length := 5;
50: END;
51: END IF;
52:
53: lv_pwd := substr(remove_repeating_char('P1' || substr(icx_call.encrypt(fnd_crypto.smallrandomnumber), 4)), 1, ln_pwd_length+1);
54:
55: -- just in case the previous encryption has too many repetitive charaters
56: WHILE length(lv_pwd) < ln_pwd_length LOOP
57: lv_pwd := lv_pwd || lv_pwd;