PQ CRYPTA PLATFORM

๐Ÿ  Main

๐Ÿงช Interactive Apps

๐Ÿ“ฐ News

๐Ÿ›ก๏ธ PQ Crypta Proxy

๐Ÿ‘ค Account

โŸจ QUANTUM ERROR PORTAL โŸฉ

Navigate the Error Dimensions

PQ Crypta Logo

CBOM Validator

CycloneDX 1.6 conformance, plus a post-quantum verdict on every asset

CycloneDX 1.6 added the cryptographic asset model in 2024, and tooling for it is still thin. Producers emit documents that look right and fail on a consumer; consumers reject documents without saying which field. The first real CBOMs we validated had over a hundred schema errors between them.

Paste one below. You get every structural finding with its JSON path, and a risk verdict per asset from the same scorer that grades our discovery agent's findings โ€” not a second implementation written for this page.

The document is validated in a subprocess and discarded when the response is written. Nothing is stored, logged, or sent anywhere. Maximum 16 MB.

What gets checked

Structural conformance to the CycloneDX 1.6 cryptographic asset model โ€” the checks that decide whether another tool can consume the document:

How assets are scored

By pqcrypta-crypto-scoring โ€” the same crate, linked directly, that grades findings for the discovery agent's offline assessment and the platform's ingestion path. It has no dependencies and no second implementation, which is the point: a verdict here is the verdict you would get from the agent on the same facts.

Scoring is separate from validation. A structurally perfect CBOM full of RSA-1024 validates cleanly and scores badly, which is the useful answer.

From CI

curl -sS -X POST --data-binary @cbom.json \
  https://pqcrypta.com/cbom/api.php \
  | jq -e '.ok and (.summary.byRisk.critical // 0) == 0'

Exits non-zero when the document stops validating or a critical-risk asset appears. A document with findings returns 200 with ok: false; only an unprocessable request returns 422, so a pipeline can tell "your CBOM has problems" from "the request was malformed".

Need a CBOM to test with? The discovery agent exports one, and so does GET /crypto-assets/export/cbom on the platform API.