mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
288 B
C++
13 lines
288 B
C++
|
|
void des_function(); // insecure
|
|
void function_using_des(); // insecure
|
|
void EncryptWithDES(); // insecure
|
|
|
|
void aes_function(); // secure
|
|
void function_using_aes(); // secure
|
|
void EncryptionWithAES(); // secure
|
|
|
|
void abc_function();
|
|
void function_using_abc();
|
|
void EncryptionWithABC();
|