Add "-b 4096" argument to ssh-keygen example command

per @garethtdavies suggestion
https://github.com/zcash/zcash-gitian/pull/58#discussion_r270273253
This commit is contained in:
Charlie O'Keefe 2019-03-28 23:34:23 -06:00
parent a66196c6d4
commit 92bf83e881
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration
You can generate a keypair specifically for connecting to github like this: You can generate a keypair specifically for connecting to github like this:
``` ```
$ ssh-keygen -t rsa -C "hpotter@hogwarts.wiz" -f ~/.ssh/github_id_rsa -N '' $ ssh-keygen -t rsa -b 4096 -C "hpotter@hogwarts.wiz" -f ~/.ssh/github_id_rsa -N ''
Generating public/private rsa key pair. Generating public/private rsa key pair.
Your identification has been saved in /Users/hpotter/.ssh/github_id_rsa. Your identification has been saved in /Users/hpotter/.ssh/github_id_rsa.
Your public key has been saved in /Users/hpotter/.ssh/github_id_rsa.pub. Your public key has been saved in /Users/hpotter/.ssh/github_id_rsa.pub.