Tokenization decision
Decide the level of trust
if (cvvValidated) {
// CSC validated.
setGreenFlag();
} else if (authenticationValue is available) {
// If you can validate CSC via authenticationValue, treat as trusted.
if (CSC_OK) setGreenFlag();
} else if (cardCaptureInformation.captureMethod == BANK_APP
|| cardCaptureInformation.captureMethod == ON_FILE) {
// Card captured in the issuer application or from Card-on-file (COF).
setGreenFlag();
} else if (cardCaptureInformation.captureMethod == CAMERA
|| cardCaptureInformation.captureMethod == MANUAL
|| cardCaptureInformation.captureMethod == UNKNOWN
|| cardCaptureInformation.captureMethod is not available) {
// Missing or weak capture method is suspicious.
setRedFlag();
}Last updated
Was this helpful?