Skip to content

Commit d27a097

Browse files
committed
tests: enum CryptoCertificationLevel
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent e70a29f commit d27a097

6 files changed

Lines changed: 1615 additions & 2 deletions

cyclonedx/model/crypto.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class CryptoImplementationPlatform(str, Enum):
136136
ARMV8_M = 'armv8-m'
137137
ARMV9_A = 'armv9-a'
138138
ARMV9_M = 'armv9-m'
139-
GENERIC = 'generic'
139+
GENERIC = 'generic' # TODO: move down
140140
PPC64 = 'ppc64'
141141
PPC64LE = 'ppc64le'
142142
S390X = 's390x'
@@ -149,6 +149,8 @@ class CryptoImplementationPlatform(str, Enum):
149149

150150
@serializable.serializable_enum
151151
class CryptoCertificationLevel(str, Enum):
152+
# TODO: move to `CryptoAlgorithmCertificationLevel`
153+
152154
"""
153155
This is our internal representation of the cryptoPropertiesType.algorithmProperties.certificationLevel ENUM type
154156
within the CycloneDX standard.

0 commit comments

Comments
 (0)