@@ -39,7 +39,7 @@ void test_macros(void *data, size_t amount, const char *str)
3939 ENCRYPT_WITH_RC2 (data, amount); // BAD
4040 ENCRYPT_WITH_AES (data, amount); // GOOD (good algorithm)
4141 ENCRYPT_WITH_3DES (data, amount); // GOOD (good enough algorithm)
42- ENCRYPT_WITH_TRIPLE_DES (data, amount); // GOOD (good enough algorithm) [FALSE POSITIVE]
42+ ENCRYPT_WITH_TRIPLE_DES (data, amount); // GOOD (good enough algorithm)
4343 ENCRYPT_WITH_RC20 (data, amount); // GOOD (if there ever is an RC20 algorithm, we have no reason to believe it's weak)
4444 ENCRYPT_WITH_DES_REMOVED (data, amount); // GOOD (implementation has been deleted)
4545
@@ -89,7 +89,7 @@ void test_functions(void *data, size_t amount, const char *str)
8989 encryptRC2 (data, amount); // BAD
9090 encryptAES (data, amount); // GOOD (good algorithm)
9191 encrypt3DES (data, amount); // GOOD (good enough algorithm)
92- encryptTripleDES (data, amount); // GOOD (good enough algorithm) [FALSE POSITIVE]
92+ encryptTripleDES (data, amount); // GOOD (good enough algorithm)
9393
9494 DESEncrypt (data, amount); // BAD
9595 RC2Encrypt (data, amount); // BAD
0 commit comments