Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ssh-keygen -t rsa -N "" -f my.key
  2.  
  3. sp.check_call(["ssh-keygen, "-t", "rsa", "-N", """", "-f", "my.key"])
  4.  
  5. sp.check_call(["ssh-keygen, "-t", "rsa", "-N", "''", "-f", "my.key"])
  6.  
  7. Saving key "my.key" failed: passphrase is too short (minimum five characters)
  8.  
  9. sp.check_call(["ssh-keygen", "-t", "rsa", "-N", "", "-f", "my.key"])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement