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 fdd09a4 commit 7b7ed61Copy full SHA for 7b7ed61
java/ql/src/experimental/Quantum/InventorySlices/AsymmetricAlgorithm.ql
@@ -0,0 +1,12 @@
1
+/**
2
+ * @name Detects known uses of asymmetric algorithms
3
+ * @id java/crypto_inventory_slices/known_asymmetric_algorithm
4
+ * @kind problem
5
+ */
6
+
7
+import java
8
+import experimental.Quantum.Language
9
10
+from Crypto::AlgorithmNode a
11
+where Crypto::isAsymmetricAlgorithm(a)
12
+select a, "Instance of asymmetric algorithm " + a.getAlgorithmName()
0 commit comments