diff options
| author | Petr Svenda | 2021-01-18 11:35:19 +0100 |
|---|---|---|
| committer | Petr Svenda | 2021-01-18 11:35:19 +0100 |
| commit | 1bed4ed9dfc3af28cb7d357fd772c1ce27f08a58 (patch) | |
| tree | 9340ef684c3166e132b522e73e43c72deaa1a3a2 | |
| parent | fa1a79d5f267e25141200d3dbb9e3e593fa5e7c7 (diff) | |
| download | sec-certs-1bed4ed9dfc3af28cb7d357fd772c1ce27f08a58.tar.gz sec-certs-1bed4ed9dfc3af28cb7d357fd772c1ce27f08a58.tar.zst sec-certs-1bed4ed9dfc3af28cb7d357fd772c1ce27f08a58.zip | |
fix missing match for ansit, ansip and sect curves
| -rw-r--r-- | sec_certs/cert_rules.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sec_certs/cert_rules.py b/sec_certs/cert_rules.py index 3cba9718..12746f0b 100644 --- a/sec_certs/cert_rules.py +++ b/sec_certs/cert_rules.py @@ -242,7 +242,8 @@ rules_block_cipher_modes = [ rules_ecc_curves = [ '(?:Curve |curve |)P-(192|224|256|384|521)', '(?:brainpool|BRAINPOOL)P[0-9]{3}[rkt][12]', - '(?:secp|SECP)[0-9]+?[rk][12]', + '(?:secp|sect|SECP|SECT)[0-9]+?[rk][12]', + '(?:ansit|ansip|ANSIP|ANSIT)[0-9]+?[rk][12]', '(?:anssi|ANSSI)[ ]*FRP[0-9]+?v1', 'prime[0-9]{3}v[123]', 'c2[pto]nb[0-9]{3}[vw][123]', |
