Skip to content

Commit 1654fc8

Browse files
Fix editing error in legacy cryptography algorithm query
The "DES" string is covered by the regex and should not be in the first list. This was a typo made during testing.
1 parent 81cac67 commit 1654fc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/crypto/UseOfLegacyAlgorithm.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ where
2222
cn in [
2323
"MD2", "MD4", "MD5", "RIPEMD", "SHA1", "Whirlpool", "Streebog",
2424
"PBKDF1",
25-
"ArcFour", "Blowfish", "CAST", "DES", "IDEA", "Kasumi",
25+
"ArcFour", "Blowfish", "CAST", "IDEA", "Kasumi",
2626
"Magma", "RC2", "RC4", "TDEA"
2727
]
2828
and cipherName = cn

0 commit comments

Comments
 (0)