AES-GCMを使用してSSHキーを生成するには?

AES-GCMを使用してSSHキーを生成するには?

次の形式を使用してSSHキーを作成しました。以下を取得します。暗号化:aes256-cbc、動作しますか?ssh-keygen -t ed25519 -C "[email protected]"[Eメール保護]代わりに?ありがとう

ベストアンサー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]"

うまくいくはずです

おすすめ記事