add aes256-ctr encryption algorithm

This commit is contained in:
Christopher Moore 2016-01-08 01:12:27 +00:00
parent 8cead41f74
commit 3dc822588f
No known key found for this signature in database
GPG Key ID: 6C6D2F8B4E4EB0F8
2 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,8 @@ module Net; module SSH; module Transport
diffie-hellman-group1-sha1),
:encryption => %w(aes128-cbc 3des-cbc blowfish-cbc cast128-cbc
aes192-cbc aes256-cbc rijndael-cbc@lysator.liu.se
idea-cbc none arcfour128 arcfour256),
idea-cbc none arcfour128 arcfour256
aes256-ctr),
:hmac => %w(hmac-sha1 hmac-md5 hmac-sha1-96 hmac-md5-96 none),
:compression => %w(none zlib@openssh.com zlib),
:language => %w()

View File

@ -13,6 +13,7 @@ module Net; module SSH; module Transport
"aes256-cbc" => "aes-256-cbc",
"aes192-cbc" => "aes-192-cbc",
"aes128-cbc" => "aes-128-cbc",
"aes256-ctr" => "aes-256-ecb",
"idea-cbc" => "idea-cbc",
"cast128-cbc" => "cast-cbc",
"rijndael-cbc@lysator.liu.se" => "aes-256-cbc",