Browse Source

fix: fix variable typo for paypro.

patch-2
Christopher Jeffrey 11 years ago
parent
commit
14bf79cc80
  1. 2
      lib/PayPro.js

2
lib/PayPro.js

@ -214,7 +214,7 @@ PayPro.prototype.sign = function(key) {
var pki_data = this.get('pki_data'); // contains one or more x509 certs var pki_data = this.get('pki_data'); // contains one or more x509 certs
//var details = this.get('serialized_payment_details'); //var details = this.get('serialized_payment_details');
var type = pki_type.split('+').toUpperCase(); var type = pki_type.split('+').toUpperCase();
var verifier = crypto.createSign('RSA-' + type); var signature = crypto.createSign('RSA-' + type);
var buf = this.serializeForSig(); var buf = this.serializeForSig();
signature.update(buf); signature.update(buf);
//var pki_data = require('fs').readFileSync(__dirname + '/../test/data/x509.pem'); //var pki_data = require('fs').readFileSync(__dirname + '/../test/data/x509.pem');

Loading…
Cancel
Save