mirror of
https://github.com/github/codeql.git
synced 2026-04-23 15:55:18 +02:00
Adding content to KnownSymmetricCipherAlgorithmql.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* @name Detects known symmetric cipher algorithms
|
||||
* @id java/crypto_inventory_slices/known_symmetric_cipher_algorithm
|
||||
* @kind problem
|
||||
*/
|
||||
|
||||
import java
|
||||
import experimental.Quantum.Language
|
||||
|
||||
from Crypto::KeyOperationAlgorithmNode a
|
||||
where a.getAlgorithmType() instanceof Crypto::KeyOpAlg::SymmetricCipherAlgorithm
|
||||
select a, "Instance of symmetric cipher algorithm " + a.getAlgorithmName()
|
||||
|
||||
Reference in New Issue
Block a user