Skip to content

Commit 32085b2

Browse files
committed
Added two new ciphers: AEAD_CAMELLIA_128_GCM, AEAD_CAMELLIA_256_GCM.
1 parent 5ddd8cc commit 32085b2

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ For convenience, a web front-end on top of the command-line tool is available at
222222
- When running against multiple hosts, now prints each target host regardless of output level.
223223
- Batch mode (`-b`) no longer automatically enables verbose mode, due to sometimes confusing results; users can still explicitly enable verbose mode using the `-v` flag.
224224
- Added 2 new key exchanges: `mlkem768nistp256-sha256`, `mlkem1024nistp384-sha384`.
225+
- Added 2 new ciphers: `AEAD_CAMELLIA_128_GCM`, `AEAD_CAMELLIA_256_GCM`.
225226

226227
### v3.3.0 (2024-10-15)
227228
- Added Python 3.13 support.

src/ssh_audit/ssh2_kexdb.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,8 @@ class SSH2_KexDB: # pylint: disable=too-few-public-methods
301301
'3des-ofb': [[], [FAIL_3DES], [WARN_CIPHER_MODE]],
302302
'AEAD_AES_128_GCM': [[]],
303303
'AEAD_AES_256_GCM': [[]],
304+
'AEAD_CAMELLIA_128_GCM': [[]],
305+
'AEAD_CAMELLIA_256_GCM': [[]],
304306
'aes128-cbc': [['2.3.0,d0.28,l10.2', '6.6', None], [], [WARN_CIPHER_MODE]],
305307
'aes128-ctr': [['3.7,d0.52,l10.4.1']],
306308
'aes128-gcm': [[]],

0 commit comments

Comments
 (0)