rename privateKey -> keypair

This commit is contained in:
AJ ONeal 2016-08-01 20:26:19 -04:00
parent e52f043cfe
commit 8e6d31436c
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ module.exports.create = function (deps) {
var generateSignature=deps.RSA.signJws;
function Acme(keypair) {
this.keypair;
this.keypair = keypair;
this.nonces=[];
}