We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e418d3 commit 129f21aCopy full SHA for 129f21a
rust/ql/lib/codeql/rust/frameworks/RustCrypto.qll
@@ -7,7 +7,7 @@ private import codeql.rust.Concepts
7
private import codeql.rust.dataflow.DataFlow
8
9
bindingset[algorithmName]
10
-string simplifyAlgorithmName(string algorithmName) {
+private string simplifyAlgorithmName(string algorithmName) {
11
// the cipher library gives triple-DES names like "TdesEee2" and "TdesEde2"
12
if algorithmName.matches("Tdes%") then result = "3des" else result = algorithmName
13
}
0 commit comments