Fix small typo in good/bad code sample.

This commit is contained in:
jelaiw
2023-01-13 19:16:11 -06:00
committed by GitHub
parent 2dbacbc302
commit cf7189bb28

View File

@@ -7,6 +7,6 @@ byte[] encrypted = cipher.doFinal(input.getBytes("UTF-8"));
// ...
// GOOD: AES is a strong algorithm
Cipher des = Cipher.getInstance("AES");
Cipher aes = Cipher.getInstance("AES");
// ...
// ...