Merge pull request +13268 from c9/all-4096bit-ssh-keys

Use 4096bit SSH Keys
This commit is contained in:
Tim Robinson 2016-04-07 12:25:25 -04:00
commit 1c6b35d299

1
node_modules/c9/ssh.js generated vendored
View File

@ -123,6 +123,7 @@ exports.generateKeyPair = function(email, callback) {
var phrase = "";
var command = "ssh-keygen -t rsa " +
"-b 4096 " +
"-f \"" + filename + "\" " +
"-P \"" + phrase + "\" " +
"-C \"" + email + "\" ";