From b6c70e6f90c0218667bc70b9d42a625f7c07b417 Mon Sep 17 00:00:00 2001 From: Petr Svenda Date: Wed, 18 Sep 2024 17:19:36 +0200 Subject: add separate CRYSTALS keyword into rules.yaml Some certificates mentions only CRYSTALS engine and not explicitly CRYSTALS-Kyber or CRYSTALS-Dilithium atop of it (e.g., NSCIB-CC-2300085-01-CR https://sec-certs.org/cc/54e6eb5c1bd57036/#st-info)--- src/sec_certs/rules.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sec_certs/rules.yaml b/src/sec_certs/rules.yaml index 43a309e1..92130703 100644 --- a/src/sec_certs/rules.yaml +++ b/src/sec_certs/rules.yaml @@ -589,6 +589,8 @@ asymmetric_crypto: pq_crypto: ClassicMcEliece: - "Classic[ -]McEliece" + CRYSTALS: + - "CRYSTALS" Kyber: - "(CRYSTALS-)?(Kyber|KYBER)" NTRU: -- cgit v1.3.1 From 05adc6d99968a26ae852b15e137c8e401f446cbb Mon Sep 17 00:00:00 2001 From: Petr Svenda Date: Wed, 18 Sep 2024 17:24:51 +0200 Subject: add rule for generic PQC term PQC and Post-Quantum Cryptography strings--- src/sec_certs/rules.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sec_certs/rules.yaml b/src/sec_certs/rules.yaml index 92130703..5f6118e9 100644 --- a/src/sec_certs/rules.yaml +++ b/src/sec_certs/rules.yaml @@ -631,7 +631,8 @@ pq_crypto: - "XMSS(MT)?" LMS: - "LMS" - + PQC: + - "(PQC|Post-Quantum Cryptography)" ##### # Hash-function, grouped by hash-function class (SHA, MD) or competition (PHC). ##### -- cgit v1.3.1