We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8e2fe13 + a5b671f commit 4d5bdeeCopy full SHA for 4d5bdee
pymdoccbor/__init__.py
@@ -1 +1 @@
1
-__version__ = "0.6.1"
+__version__ = "0.7.0"
pymdoccbor/settings.py
@@ -2,11 +2,15 @@
2
import os
3
4
COSEKEY_HAZMAT_CRV_MAP = {
5
- "secp256r1": "P_256"
+ "secp256r1": "P_256",
6
+ "secp384r1": "P_384",
7
+ "secp521r1": "P_521"
8
}
9
10
CRV_LEN_MAP = {
11
"secp256r1": 32,
12
+ "secp384r1": 48,
13
+ "secp521r1": 66
14
15
16
PYMDOC_HASHALG: str = os.getenv('PYMDOC_HASHALG', "SHA-256")
0 commit comments