disambiguate

This commit is contained in:
AJ ONeal 2016-08-01 21:19:17 -04:00
parent 2f607314b9
commit 761202ae8e
1 changed files with 4 additions and 3 deletions

View File

@ -334,10 +334,11 @@ module.exports.create = function (deps) {
privkeyPem = RSA.exportPrivateKeyPem(state.certKeypair);
cb(null, {
cert: certPem
// TODO nix key
, key: privkeyPem
// TODO privkey isn't necessary
, privkey: privkeyPem
//, keypair: state.certKeypair // domainKeypair
, chain: state.caCertPem
// TODO nix key, ca
, key: privkeyPem
, ca: state.caCertPem
});
}