mirror of https://github.com/cheat/cheat.git
Merge pull request #102 from gbremer/ssh-keygen-fix
Fixing bit size to standard 4096
This commit is contained in:
commit
6eb7ec04ff
|
@ -10,5 +10,5 @@ ssh-keygen -p -P old_passphrase -N new_passphrase -f /path/to/keyfile
|
|||
# To remove a passphrase on a key
|
||||
ssh-keygen -p -P old_passphrase -N '' -f /path/to/keyfile
|
||||
|
||||
# To generate a 4048 bit RSA key with a passphase and comment containing the user and hostname
|
||||
ssh-keygen -t rsa -b 4048 -C "$USER@$HOSTNAME" -P passphrase
|
||||
# To generate a 4096 bit RSA key with a passphase and comment containing the user and hostname
|
||||
ssh-keygen -t rsa -b 4096 -C "$USER@$HOSTNAME" -P passphrase
|
||||
|
|
Loading…
Reference in New Issue