Modify model to use newtypes, expand modeling

This commit is contained in:
Nicolas Will
2025-02-12 17:58:15 +01:00
parent 4d44755945
commit 874e3b5e06
4 changed files with 676 additions and 167 deletions

View File

@@ -2,7 +2,8 @@
* @name "PQC Test"
*/
import experimental.Quantum.Language
import experimental.Quantum.Language
from JCAModel::AESLiteral l
select l, l.getAlg(), l.getMode().getValue(), l.getPadding().getValue()
from Crypto::SymmetricAlgorithm a, Crypto::ModeOfOperation mode
where a.getModeOfOperation() = mode
select a, a.getAlgorithmName(), a.getRawAlgorithmName(), mode, mode.getAlgorithmName()