Skip to content

Commit 7f880a2

Browse files
authored
Merge pull request #11886 from jelaiw/jelaiw-patch-1
Fix small typo in good/bad code sample.
2 parents 2dbacbc + cf7189b commit 7f880a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/src/Security/CWE/CWE-327/BrokenCryptoAlgorithm.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
// ...
88

99
// GOOD: AES is a strong algorithm
10-
Cipher des = Cipher.getInstance("AES");
10+
Cipher aes = Cipher.getInstance("AES");
1111

12-
// ...
12+
// ...

0 commit comments

Comments
 (0)