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 d2598d4 commit 79ccef3Copy full SHA for 79ccef3
java/ql/src/experimental/quantum/Examples/UnknownHash.ql
@@ -12,5 +12,8 @@ import java
12
import experimental.quantum.Language
13
14
from Crypto::HashAlgorithmNode alg
15
-where not exists(alg.getHashType())
16
-select alg, "Use of unknown hash algorithm or API."
+where
+ not exists(alg.getHashType())
17
+ or
18
+ alg.getHashType() = Crypto::OtherHashType()
19
+select alg, "Use of unknown hash algorithm."
0 commit comments