-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariants.json
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathvariants.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"default": {
"description": "Standard RFC 9580 OpenPGP build. All Botan modules rnp needs.",
"botan_extra_modules": [],
"rnp_cache_vars": {
"ENABLE_PQC": "OFF",
"ENABLE_CRYPTO_REFRESH": "OFF"
},
"ts_registry_augment": null
},
"pqc": {
"description": "Post-quantum build: ML-KEM, ML-DSA, SLH-DSA via Botan + ENABLE_PQC=ON.",
"botan_extra_modules": ["ml_kem", "ml_dsa", "slh_dsa"],
"rnp_cache_vars": {
"ENABLE_PQC": "ON",
"ENABLE_CRYPTO_REFRESH": "OFF"
},
"ts_registry_augment": "ts/pqc.ts"
},
"brainpool": {
"description": "Adds Brainpool curves.",
"botan_extra_modules": ["brainpool"],
"rnp_cache_vars": {
"ENABLE_PQC": "OFF",
"ENABLE_CRYPTO_REFRESH": "OFF",
"ENABLE_BRAINPOOL": "ON"
},
"ts_registry_augment": null
},
"sm": {
"description": "SM2/SM3/SM4 (Chinese cryptography suite).",
"botan_extra_modules": [],
"rnp_cache_vars": {
"ENABLE_PQC": "OFF",
"ENABLE_CRYPTO_REFRESH": "OFF",
"ENABLE_SM2": "ON"
},
"ts_registry_augment": null
}
}