Make the generated RSA keys a bit less aggressive.

5888 is supposed to be roughly equivalent to 180 bits of keyspace,
which is what I use for passphrases, anyhow.
This commit is contained in:
2022-03-24 12:26:59 -04:00
parent f7ac3f7500
commit dca9b4df95
2 changed files with 5 additions and 3 deletions

View File

@ -1,8 +1,9 @@
#!/usr/bin/env bash
keytype=rsa
keybits=16384
keybits=5888
if [ -z $1 ] ; then
if [ -z $1 ]
then
echo "Need a hostname"
exit
fi