This commit is contained in:
Dan Mills 2008-11-20 09:15:16 +09:00
Родитель 7fbf3df420
Коммит 37168b9208
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -204,6 +204,7 @@ PubKeyManager.prototype = {
},
createKeypair: function KeyMgr_createKeypair(passphrase, pubkeyUri, privkeyUri) {
this._log.debug("Generating RSA keypair");
let pubkey = new PubKey();
let privkey = new PrivKey();
privkey.salt = this._crypto.generateRandomBytes(16);
@ -222,6 +223,7 @@ PubKeyManager.prototype = {
pubkey.privateKeyUri = privkeyUri;
}
this._log.debug("Generating RSA keypair... done");
return {pubkey: pubkey, privkey: privkey};
},