bitcore-lib-zcash/lib/PayPro.js

115 lines
3.4 KiB
JavaScript
Raw Normal View History

'use strict';
var Message = Message || require('./Message');
2014-07-21 13:52:09 -07:00
var RootCerts = require('./common/RootCerts');
var PayPro = require('./common/PayPro');
2014-08-21 16:13:34 -07:00
var KJUR = require('jsrsasign');
var asn1 = require('asn1.js');
var rfc3280 = require('asn1.js/rfc/3280');
var Certificate = rfc3280.Certificate;
PayPro.prototype.x509Sign = function(key) {
var self = this;
var crypto = require('crypto');
2014-07-21 11:30:32 -07:00
var pki_type = this.get('pki_type');
var pki_data = this.get('pki_data'); // contains one or more x509 certs
pki_data = PayPro.X509Certificates.decode(pki_data);
pki_data = pki_data.certificate;
var details = this.get('serialized_payment_details');
var type = pki_type.split('+')[1].toUpperCase();
2014-07-24 17:40:56 -07:00
var trusted = pki_data.map(function(cert) {
var der = cert.toString('hex');
var pem = self._DERtoPEM(der, 'CERTIFICATE');
2014-07-24 17:40:56 -07:00
return RootCerts.getTrusted(pem);
});
2014-07-24 17:40:56 -07:00
// XXX Figure out what to do here
if (!trusted.length) {
// throw new Error('Unstrusted certificate.');
2014-07-24 17:40:56 -07:00
} else {
trusted.forEach(function(name) {
// console.log('Certificate: %s', name);
});
}
var signature = crypto.createSign('RSA-' + type);
var buf = this.serializeForSig();
signature.update(buf);
var sig = signature.sign(key);
return sig;
};
PayPro.prototype.x509Verify = function() {
var self = this;
var crypto = require('crypto');
2014-07-21 11:30:32 -07:00
var pki_type = this.get('pki_type');
var sig = this.get('signature');
var pki_data = this.get('pki_data');
pki_data = PayPro.X509Certificates.decode(pki_data);
pki_data = pki_data.certificate;
var details = this.get('serialized_payment_details');
var buf = this.serializeForSig();
var type = pki_type.split('+')[1].toUpperCase();
var verifier = crypto.createVerify('RSA-' + type);
verifier.update(buf);
2014-08-21 16:13:34 -07:00
var signedCert = pki_data[0];
var der = signedCert.toString('hex');
var pem = this._DERtoPEM(der, 'CERTIFICATE');
var verified = verifier.verify(pem, sig);
var chain = pki_data;
// Verifying the cert chain:
// 1. Extract public key from next certificate.
// 2. Extract signature from current certificate.
// 3. If current cert is not trusted, verify that the current cert is signed
// by NEXT by the certificate.
2014-08-22 08:38:19 -07:00
// NOTE: XXX What to do when the certificate is revoked?
2014-08-21 16:13:34 -07:00
2014-08-22 08:38:19 -07:00
var chainVerified = chain.every(function(cert, i) {
var der = cert.toString('hex');
var pem = self._DERtoPEM(der, 'CERTIFICATE');
2014-07-24 17:40:56 -07:00
var name = RootCerts.getTrusted(pem);
2014-08-21 16:13:34 -07:00
var ncert = chain[i + 1];
// The root cert, check if it's trusted:
if (!ncert || name) {
2014-08-22 08:38:19 -07:00
chain.length = 0;
return true;
}
2014-08-21 16:13:34 -07:00
var nder = ncert.toString('hex');
var npem = self._DERtoPEM(nder, 'CERTIFICATE');
2014-08-22 08:38:19 -07:00
// Get public key from next certificate:
var data = new Buffer(nder, 'hex');
var nc = Certificate.decode(data, 'der');
var npubKey = nc.tbsCertificate.subjectPublicKeyInfo.subjectPublicKey.data;
npubKey = self._DERtoPEM(npubKey, 'RSA PUBLIC KEY');
2014-08-22 08:38:19 -07:00
// Get signature from current certificate:
var data = new Buffer(der, 'hex');
var c = Certificate.decode(data, 'der');
var sig = c.signature.data;
2014-08-21 16:13:34 -07:00
var verifier = crypto.createVerify('RSA-' + type);
2014-08-22 08:38:19 -07:00
// Create a To-Be-Signed Certificate to verify using asn1.js:
2014-08-22 00:34:41 -07:00
// Fails at Issuer:
var tbs = rfc3280.TBSCertificate.encode(c.tbsCertificate, 'der');
verifier.update(tbs);
2014-08-21 16:13:34 -07:00
2014-08-22 08:38:19 -07:00
return verifier.verify(npubKey, sig);
});
2014-08-21 16:13:34 -07:00
2014-08-22 08:38:19 -07:00
return verified && chainVerified;
};
module.exports = PayPro;