mirror of
https://github.com/jtesta/ssh-audit.git
synced 2024-11-22 18:41:40 +01:00
Added 2 new ciphers: AEAD_AES_128_GCM and AEAD_AES_256_GCM.
This commit is contained in:
parent
4ffae85325
commit
4b314a55ef
@ -71,7 +71,7 @@ $ snap install ssh-audit
|
|||||||
## ChangeLog
|
## ChangeLog
|
||||||
### v2.2.1-dev (???)
|
### v2.2.1-dev (???)
|
||||||
- Added 1 new host key types: `ssh-rsa1`.
|
- Added 1 new host key types: `ssh-rsa1`.
|
||||||
- Added 1 new ciphers: `blowfish`.
|
- Added 1 new ciphers: `blowfish`, `AEAD_AES_128_GCM`, `AEAD_AES_256_GCM`.
|
||||||
- Added 2 new MACs: `chacha20-poly1305@openssh.com`, `hmac-sha3-224`.
|
- Added 2 new MACs: `chacha20-poly1305@openssh.com`, `hmac-sha3-224`.
|
||||||
|
|
||||||
### v2.2.0 (2020-03-11)
|
### v2.2.0 (2020-03-11)
|
||||||
|
@ -466,6 +466,8 @@ class SSH2(object): # pylint: disable=too-few-public-methods
|
|||||||
'aes256-ctr': [['3.7,d0.52,l10.4.1']],
|
'aes256-ctr': [['3.7,d0.52,l10.4.1']],
|
||||||
'aes128-gcm': [[]],
|
'aes128-gcm': [[]],
|
||||||
'aes256-gcm': [[]],
|
'aes256-gcm': [[]],
|
||||||
|
'AEAD_AES_128_GCM': [[]],
|
||||||
|
'AEAD_AES_256_GCM': [[]],
|
||||||
'aes128-gcm@openssh.com': [['6.2']],
|
'aes128-gcm@openssh.com': [['6.2']],
|
||||||
'aes256-gcm@openssh.com': [['6.2']],
|
'aes256-gcm@openssh.com': [['6.2']],
|
||||||
'chacha20-poly1305': [[], [], [], [INFO_OPENSSH69_CHACHA]],
|
'chacha20-poly1305': [[], [], [], [INFO_OPENSSH69_CHACHA]],
|
||||||
|
Loading…
Reference in New Issue
Block a user