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 83617e0 commit c80588cCopy full SHA for c80588c
java/ql/src/experimental/Quantum/InventorySlices/KnownSymmetricCipherAlgorithm.ql
@@ -0,0 +1,12 @@
1
+/**
2
+ * @name Detects known symmetric cipher algorithms
3
+ * @id java/crypto_inventory_slices/known_symmetric_cipher_algorithm
4
+ * @kind problem
5
+ */
6
+
7
+import java
8
+import experimental.Quantum.Language
9
10
+from Crypto::KeyOperationAlgorithmNode a
11
+where a.getAlgorithmType() instanceof Crypto::KeyOpAlg::SymmetricCipherAlgorithm
12
+select a, "Instance of symmetric cipher algorithm " + a.getAlgorithmName()
0 commit comments