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]"

잘 작동해야 해

관련 정보