Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion schema/2.0/cyclonedx-2.0-bundled.min.schema.json

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions schema/2.0/cyclonedx-2.0-bundled.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2802,6 +2802,7 @@
"cc-eal6+",
"cc-eal7",
"cc-eal7+",
"cavp",
"other",
"unknown"
],
Expand Down Expand Up @@ -2833,6 +2834,7 @@
"cc-eal6+": "Common Criteria - Evaluation Assurance Level 6 (Augmented)",
"cc-eal7": "Common Criteria - Evaluation Assurance Level 7",
"cc-eal7+": "Common Criteria - Evaluation Assurance Level 7 (Augmented)",
"cavp": "Cryptographic Algorithm Validation Program",
"other": "Another certification",
"unknown": "The certification level is not known"
}
Expand All @@ -2858,6 +2860,9 @@
"kwp",
"cts",
"xts",
"xpn",
"ff1",
"ff3-1",
"other",
"unknown"
],
Expand All @@ -2877,6 +2882,9 @@
"kwp": "AES Key Wrap with Padding (RFC 5649).",
"cts": "Ciphertext Stealing mode.",
"xts": "XEX Tweaked-codebook with Stealing (disk encryption).",
"xpn": "Extended Packet Numbering mode.",
"ff1": "Format-preserving encryption mode 1.",
"ff3-1": "Format-preserving encryption mode 3, update 1.",
"other": "Another mode of operation.",
"unknown": "The mode is not known."
}
Expand All @@ -2892,6 +2900,7 @@
"oaep",
"raw",
"pss",
"x931",
"other",
"unknown"
],
Expand All @@ -2902,6 +2911,7 @@
"oaep": "Optimal Asymmetric Encryption Padding for RSA.",
"raw": "No padding applied.",
"pss": "Probabilistic Signature Scheme for RSA signatures.",
"x931": "ANSI X9.31 padding for RSA.",
"other": "Another padding scheme.",
"unknown": "The padding scheme is not known."
}
Expand Down Expand Up @@ -3636,7 +3646,10 @@
"description": "A cryptographic function or usage.",
"enum": [
"generate",
"paramgen",
"paramver",
"keygen",
"keyver",
"encrypt",
"decrypt",
"digest",
Expand All @@ -3653,7 +3666,9 @@
],
"meta:enum": {
"generate": "Generates random data, IVs, or nonces.",
"paramgen": "Verifies cryptographic domain parameters.",
"keygen": "Generates cryptographic keys.",
"keyver": "Verifies cryptographic keys.",
"encrypt": "Transforms plaintext into ciphertext.",
"decrypt": "Transforms ciphertext into plaintext.",
"digest": "Computes a hash value from input data.",
Expand Down
16 changes: 16 additions & 0 deletions schema/2.0/model/cyclonedx-cryptography-2.0.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@
"cc-eal6+",
"cc-eal7",
"cc-eal7+",
"cavp",
"other",
"unknown"
],
Expand Down Expand Up @@ -230,6 +231,7 @@
"cc-eal6+": "Common Criteria - Evaluation Assurance Level 6 (Augmented)",
"cc-eal7": "Common Criteria - Evaluation Assurance Level 7",
"cc-eal7+": "Common Criteria - Evaluation Assurance Level 7 (Augmented)",
"cavp": "Cryptographic Algorithm Validation Program",
"other": "Another certification",
"unknown": "The certification level is not known"
}
Expand All @@ -255,6 +257,9 @@
"kwp",
"cts",
"xts",
"xpn",
"ff1",
"ff3-1",
"other",
"unknown"
],
Expand All @@ -274,6 +279,9 @@
"kwp": "AES Key Wrap with Padding (RFC 5649).",
"cts": "Ciphertext Stealing mode.",
"xts": "XEX Tweaked-codebook with Stealing (disk encryption).",
"xpn": "Extended Packet Numbering mode.",
"ff1": "Format-preserving encryption mode 1.",
"ff3-1": "Format-preserving encryption mode 3, update 1.",
"other": "Another mode of operation.",
"unknown": "The mode is not known."
}
Expand All @@ -289,6 +297,7 @@
"oaep",
"raw",
"pss",
"x931",
"other",
"unknown"
],
Expand All @@ -299,6 +308,7 @@
"oaep": "Optimal Asymmetric Encryption Padding for RSA.",
"raw": "No padding applied.",
"pss": "Probabilistic Signature Scheme for RSA signatures.",
"x931": "ANSI X9.31 padding for RSA.",
"other": "Another padding scheme.",
"unknown": "The padding scheme is not known."
}
Expand Down Expand Up @@ -1033,7 +1043,10 @@
"description": "A cryptographic function or usage.",
"enum": [
"generate",
"paramgen",
"paramver",
"keygen",
"keyver",
"encrypt",
"decrypt",
"digest",
Expand All @@ -1050,7 +1063,10 @@
],
"meta:enum": {
"generate": "Generates random data, IVs, or nonces.",
"paramgen": "Generates cryptographic domain parameters.",
"paramgen": "Verifies cryptographic domain parameters.",
"keygen": "Generates cryptographic keys.",
"keyver": "Verifies cryptographic keys.",
"encrypt": "Transforms plaintext into ciphertext.",
"decrypt": "Transforms ciphertext into plaintext.",
"digest": "Computes a hash value from input data.",
Expand Down