paypro: fix browser kjur usage.

This commit is contained in:
Christopher Jeffrey 2014-08-22 13:21:02 -07:00
parent 6dbff09d40
commit 1a0de813fc

View File

@ -119,7 +119,7 @@ PayPro.prototype.x509Verify = function(key) {
// Create a To-Be-Signed Certificate to verify using asn1.js:
// Fails at Issuer:
var tbs = rfc3280.TBSCertificate.encode(c.tbsCertificate, 'der');
jsrsaSig.updateHex(tbs);
jsrsaSig.updateHex(tbs.toString('hex'));
return jsrsaSig.verify(sig);
});