Skip to content

Commit 71e4bc6

Browse files
committed
corrected CryptoMode enum
Signed-off-by: Paul Horton <[email protected]>
1 parent f504daa commit 71e4bc6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

cyclonedx/model/crypto.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -199,13 +199,13 @@ class CryptoMode(str, Enum):
199199
See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
200200
"""
201201

202-
CB = 'cb'
203-
CC = 'cc'
204-
CF = 'cf'
205-
CT = 'ct'
206-
EC = 'ec'
207-
GC = 'gc'
208-
OF = 'of'
202+
CBC = 'cbc'
203+
CCM = 'ccm'
204+
CFB = 'cfb'
205+
CTR = 'ctr'
206+
ECB = 'ecb'
207+
GCM = 'gcm'
208+
OFB = 'ofb'
209209

210210
OTHER = 'other'
211211
UNKNOWN = 'unknown'

0 commit comments

Comments
 (0)