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.
1 parent f504daa commit 71e4bc6Copy full SHA for 71e4bc6
cyclonedx/model/crypto.py
@@ -199,13 +199,13 @@ class CryptoMode(str, Enum):
199
See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
200
"""
201
202
- CB = 'cb'
203
- CC = 'cc'
204
- CF = 'cf'
205
- CT = 'ct'
206
- EC = 'ec'
207
- GC = 'gc'
208
- OF = 'of'
+ CBC = 'cbc'
+ CCM = 'ccm'
+ CFB = 'cfb'
+ CTR = 'ctr'
+ ECB = 'ecb'
+ GCM = 'gcm'
+ OFB = 'ofb'
209
210
OTHER = 'other'
211
UNKNOWN = 'unknown'
0 commit comments