Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions cpp/src/crypto/UseOfLegacyAlgorithm.ql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @name Use of legacy cryptographic algorithm
* @id tob/cpp/use-of-legacy-algorithm
* @description Detects potential instantiations of legacy cryptographic algorithms
* @description Detects potential calls to legacy cryptographic algorithms
* @kind problem
* @tags correctness crypto
* @problem.severity warning
Expand All @@ -22,8 +22,7 @@ where
// KDFs
"%pbkdf1%",
// Symmetric ciphers
"%arcfour%", "%blowfish%", "%cast%", "%des%", "%idea%", "%kasumi%",
"%magma%", "%rc2%", "%rc4%", "%tdea%"
"%arcfour%", "%blowfish%", "%kasumi%", "%magma%", "%rc2%", "%rc4%", "%tdea%"
])
select call.getLocation(),
"Potential use of legacy cryptographic algorithm " + call.getTarget().getQualifiedName() +
Expand Down
Loading