Skip to content

Commit 94deb1a

Browse files
committed
add: AES-CTR and AES-CBC to enums.py
1 parent 2ac4498 commit 94deb1a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

cwt/enums.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ class COSEKeyParams(enum.IntEnum):
6060

6161

6262
class COSEAlgs(enum.IntEnum):
63+
A128CTR = -65534
64+
A192CTR = -65533
65+
A256CTR = -65532
66+
A128CBC = -65531
67+
A192CBC = -65530
68+
A256CBC = -65529
6369
RS512 = -259
6470
RS384 = -258
6571
RS256 = -257

0 commit comments

Comments
 (0)