DBA Data[Home] [Help]

APPS.IBY_CREDITCARD_PKG dependencies on IBY_SECURITY_PKG

Line 102: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE,

98: p_purpose IN iby_creditcard.card_purpose%TYPE,
99: p_desc IN iby_creditcard.description%TYPE,
100: p_active_flag IN iby_creditcard.active_flag%TYPE,
101: p_inactive_date IN iby_creditcard.inactive_date%TYPE,
102: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE,
103: p_attribute_category IN iby_creditcard.attribute_category%TYPE,
104: p_attribute1 IN iby_creditcard.attribute1%TYPE,
105: p_attribute2 IN iby_creditcard.attribute2%TYPE,
106: p_attribute3 IN iby_creditcard.attribute3%TYPE,

Line 195: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE,

191:
192:
193: PROCEDURE Query_Card
194: (p_card_id IN iby_creditcard.instrid%TYPE,
195: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE,
196: x_owner_id OUT NOCOPY iby_creditcard.card_owner_id%TYPE,
197: x_holder_name OUT NOCOPY iby_creditcard.chname%TYPE,
198: x_billing_address_id OUT NOCOPY iby_creditcard.addressid%TYPE,
199: x_billing_address1 OUT NOCOPY hz_locations.address1%TYPE,

Line 231: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE

227: -- i_sys_sec_key => the system security key
228: --
229: FUNCTION uncipher_ccnumber
230: (p_instrid IN iby_creditcard.instrid%TYPE,
231: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE
232: )
233: RETURN iby_creditcard.ccnumber%TYPE;
234:
235: --

Line 241: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE,

237: FUNCTION uncipher_ccnumber
238: (p_cc_number IN iby_creditcard.ccnumber%TYPE,
239: p_segment_cipher IN iby_security_segments.segment_cipher_text%TYPE,
240: p_encrypted IN iby_creditcard.encrypted%TYPE,
241: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE,
242: p_subkey_cipher IN iby_sys_security_subkeys.subkey_cipher_text%TYPE,
243: p_card_len IN iby_cc_issuer_ranges.card_number_length%TYPE,
244: p_cc_prefix IN iby_cc_issuer_ranges.card_number_prefix%TYPE,
245: p_digit_check IN iby_creditcard_issuers_b.digit_check_flag%TYPE,

Line 266: i_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE)

262: -- i_sys_sec_key => the system security key
263: --
264: FUNCTION uncipher_ccnumber_ui_wrp
265: (i_instrid IN iby_creditcard.instrid%TYPE,
266: i_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE)
267: RETURN iby_creditcard.ccnumber%TYPE;
268:
269: --
270: -- USE: Un-encrypts all registered credit card instruments, storing

Line 278: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE

274: -- p_sys_key => system security key; used to decrypt instruments
275: --
276: PROCEDURE Decrypt_Instruments
277: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
278: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE
279: );
280:
281: --
282: -- USE: Encrypts all registered credit cards

Line 289: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE

285: -- p_sys_key => system security key; used to encrypt instruments
286: --
287: PROCEDURE Encrypt_Instruments
288: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
289: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE
290: );
291:
292: --
293: -- USE: Updates instrument masks according to new setting

Line 300: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE

296: -- p_sys_key => system security key; used to encrypt instruments
297: --
298: PROCEDURE Remask_Instruments
299: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
300: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE
301: );
302:
303: -- USE: Compresses a card number into the minimum clear text
304: -- representation

Line 356: p_sys_security_key IN iby_security_pkg.DES3_KEY_TYPE,

352: -- corresponding security segment_IDs
353: --
354: PROCEDURE Encrypt_Card_Info
355: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
356: p_sys_security_key IN iby_security_pkg.DES3_KEY_TYPE,
357: p_expiry_date IN DATE,
358: p_chname IN VARCHAR2,
359: x_exp_segment_id OUT NOCOPY NUMBER,
360: x_chname_segment_id OUT NOCOPY NUMBER,

Line 370: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE

366: --
367: --
368: PROCEDURE Mark_Expired_Cards
369: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
370: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE
371: );
372:
373: END iby_creditcard_pkg;