Skip to content

Commit cf7189b

Browse files
authored
Fix small typo in good/bad code sample.
1 parent 2dbacbc commit cf7189b

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

Lines changed: 2 additions & 2 deletions
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)