Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions emv/dataAuthentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,11 @@ DataAuthentication.prototype.retrieveIssuerPublicKey = function() {
* @param {Key} key the Issuer Public Key
*/
DataAuthentication.prototype.verifySSAD = function(issuerPublicKeyModulus) {
var SSAD = this.emv.cardDE[0x93];
if (typeof(SSAD) == "undefined") {
print("<-----------------------------SDA is not supported on this card------------------------------>\n");
return;
}
var issuerPublicKeyModulus = issuerPublicKeyModulus;
var key = new Key();
key.setType(Key.PUBLIC);
Expand Down