Skip to content

Commit fcb0856

Browse files
authored
fix ARIA_256_GCM cipher suites (#915)
1 parent b03c54e commit fcb0856

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/constants/CipherAlgorithm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public enum CipherAlgorithm {
4040
ARIA_128_CBC(16, 16, 0, 16, "ARIA/CBC/NoPadding"), // not tested yet
4141
ARIA_256_CBC(32, 16, 0, 16, "ARIA/CBC/NoPadding"), // not tested yet
4242
ARIA_128_GCM(16, 16, 8, 16, "ARIA/GCM/NoPadding"), // not tested yet
43-
ARIA_256_GCM(16, 16, 8, 16, "ARIA/GCM/NoPadding"), // not tested yet
43+
ARIA_256_GCM(32, 16, 8, 16, "ARIA/GCM/NoPadding"), // not tested yet
4444
GOST_28147_CNT(32, 8, 0, 8, "GOST28147/ECB/NoPadding"),
4545
FORTEZZA_CBC(0, 0, 0, 0), // TODO
4646
AES_128_CTR(16, 16, 0, 0, "AES/CTR/NoPadding"),

0 commit comments

Comments
 (0)