我使用这个表单来创建我的ssh键:ssh-keygen -t ed25519 -C "your_email@example.com"
和我得到的:加密:gcm 256-cbc,是否有可能使用gcm 256-gcm@openssh.com呢?谢谢
发布于 2023-02-20 14:38:34
-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 "aes256-gcm@openssh.com" -C "your_email@example.com"
应该工作得很好
https://unix.stackexchange.com/questions/736202
复制相似问题