22
22
Introduced in CycloneDX v1.6
23
23
24
24
.. note::
25
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
25
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
26
26
"""
27
27
28
28
from collections .abc import Iterable
@@ -48,7 +48,7 @@ class CryptoAssetType(str, Enum):
48
48
Introduced in CycloneDX v1.6
49
49
50
50
.. note::
51
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
51
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
52
52
"""
53
53
54
54
ALGORITHM = 'algorithm'
@@ -67,7 +67,7 @@ class CryptoPrimitive(str, Enum):
67
67
Introduced in CycloneDX v1.6
68
68
69
69
.. note::
70
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
70
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
71
71
"""
72
72
73
73
AE = 'ae'
@@ -98,7 +98,7 @@ class CryptoExecutionEnvironment(str, Enum):
98
98
Introduced in CycloneDX v1.6
99
99
100
100
.. note::
101
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
101
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
102
102
"""
103
103
104
104
HARDWARE = 'hardware'
@@ -120,7 +120,7 @@ class CryptoImplementationPlatform(str, Enum):
120
120
Introduced in CycloneDX v1.6
121
121
122
122
.. note::
123
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
123
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
124
124
"""
125
125
126
126
ARMV7_A = 'armv7-a'
@@ -150,7 +150,7 @@ class CryptoCertificationLevel(str, Enum):
150
150
Introduced in CycloneDX v1.6
151
151
152
152
.. note::
153
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
153
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
154
154
"""
155
155
156
156
NONE = 'none'
@@ -196,7 +196,7 @@ class CryptoMode(str, Enum):
196
196
Introduced in CycloneDX v1.6
197
197
198
198
.. note::
199
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
199
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
200
200
"""
201
201
202
202
CBC = 'cbc'
@@ -221,7 +221,7 @@ class CryptoPadding(str, Enum):
221
221
Introduced in CycloneDX v1.6
222
222
223
223
.. note::
224
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
224
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
225
225
"""
226
226
227
227
PKCS5 = 'pkcs5'
@@ -244,7 +244,7 @@ class CryptoFunction(str, Enum):
244
244
Introduced in CycloneDX v1.6
245
245
246
246
.. note::
247
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
247
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
248
248
"""
249
249
250
250
DECAPSULATE = 'decapsulate'
@@ -273,7 +273,7 @@ class AlgorithmProperties:
273
273
Introduced in CycloneDX v1.6
274
274
275
275
.. note::
276
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
276
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
277
277
"""
278
278
279
279
def __init__ (
@@ -525,7 +525,7 @@ class CertificateProperties:
525
525
526
526
527
527
.. note::
528
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
528
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
529
529
"""
530
530
531
531
def __init__ (
@@ -700,7 +700,7 @@ class RelatedCryptoMaterialType(str, Enum):
700
700
Introduced in CycloneDX v1.6
701
701
702
702
.. note::
703
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
703
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
704
704
"""
705
705
706
706
ADDITIONAL_DATA = 'additional-data'
@@ -735,7 +735,7 @@ class RelatedCryptoMaterialState(str, Enum):
735
735
Introduced in CycloneDX v1.6
736
736
737
737
.. note::
738
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
738
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
739
739
"""
740
740
741
741
ACTIVE = 'active'
@@ -757,7 +757,7 @@ class RelatedCryptoMaterialSecuredBy:
757
757
758
758
759
759
.. note::
760
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
760
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
761
761
"""
762
762
763
763
def __init__ (
@@ -828,7 +828,7 @@ class RelatedCryptoMaterialProperties:
828
828
829
829
830
830
.. note::
831
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
831
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
832
832
"""
833
833
834
834
def __init__ (
@@ -1072,7 +1072,7 @@ class ProtocolPropertiesType(str, Enum):
1072
1072
Introduced in CycloneDX v1.6
1073
1073
1074
1074
.. note::
1075
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
1075
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
1076
1076
"""
1077
1077
1078
1078
IKE = 'ike'
@@ -1097,7 +1097,7 @@ class ProtocolPropertiesCipherSuite:
1097
1097
1098
1098
1099
1099
.. note::
1100
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
1100
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
1101
1101
"""
1102
1102
1103
1103
def __init__ (
@@ -1190,7 +1190,7 @@ class Ikev2TransformTypes:
1190
1190
1191
1191
1192
1192
.. note::
1193
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
1193
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
1194
1194
"""
1195
1195
1196
1196
def __init__ (
@@ -1332,7 +1332,7 @@ class ProtocolProperties:
1332
1332
1333
1333
1334
1334
.. note::
1335
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
1335
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
1336
1336
"""
1337
1337
1338
1338
def __init__ (
@@ -1457,7 +1457,7 @@ class CryptoProperties:
1457
1457
1458
1458
1459
1459
.. note::
1460
- See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/#type_cryptoPropertiesType
1460
+ See the CycloneDX Schema for hashType: https://cyclonedx.org/docs/1.6/xml/ #type_cryptoPropertiesType
1461
1461
"""
1462
1462
1463
1463
def __init__ (
0 commit comments