change default key length to 8192

This commit is contained in:
mingyang 2021-05-12 21:20:41 +08:00
parent a3fdb08a52
commit 244b89bdde

View File

@ -3,7 +3,7 @@ from utils import load_users
users = load_users('./users.txt')
command = 'ssh-keygen -b 1024 -N "" -C "" -f {0}'
command = 'ssh-keygen -b 8192 -N "" -C "" -f {0}'
for user in users:
if not os.path.isfile(user):