如何使用 AES-GCM 生成 ssh 密钥?

如何使用 AES-GCM 生成 ssh 密钥?

我使用该表单创建了我的 ssh 密钥:我得到:加密:aes256-cbc,是否可以使用ssh-keygen -t ed25519 -C "[email protected]"[电子邮件受保护]反而?谢谢

答案1

man 1 ssh-keygen状态 :

 -Z cipher
         Specifies the cipher to use for encryption when writing an
         OpenSSH-format private key file.  The list of available
         ciphers may be obtained using "ssh -Q cipher".  The default
         is “aes256-ctr”.

ssh-keygen -t ed25519 -Z "[email protected]" -C "[email protected]"

应该可以正常工作

相关内容