workin' it
This commit is contained in:
parent
e651755417
commit
aec8958ca8
|
@ -6,11 +6,11 @@
|
|||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
module.exports.create = function (deps) {
|
||||
var NOOP=function () {}, log=NOOP;
|
||||
var request=require('request');
|
||||
var cryptoUtil=require('./crypto-util');
|
||||
var Acme = require('./acme-client');
|
||||
var importPemPrivateKey=deps.leCrypto.importPemPrivateKey;
|
||||
var Acme = deps.Acme;
|
||||
|
||||
function registerNewAccount(options, cb) {
|
||||
var state = {};
|
||||
|
@ -32,7 +32,7 @@ function registerNewAccount(options, cb) {
|
|||
}
|
||||
|
||||
state.accountKeyPem=options.accountPrivateKeyPem;
|
||||
state.accountKeyPair=cryptoUtil.importPemPrivateKey(state.accountKeyPem);
|
||||
state.accountKeyPair=importPemPrivateKey(state.accountKeyPem);
|
||||
state.acme=new Acme(state.accountKeyPair);
|
||||
|
||||
register();
|
||||
|
@ -114,4 +114,5 @@ function registerNewAccount(options, cb) {
|
|||
}
|
||||
}
|
||||
|
||||
module.exports = registerNewAccount;
|
||||
return registerNewAccount;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue