Dyber Root CA

Subject
C=US, ST=Maryland, L=Annapolis, O=Dyber, Inc., CN=Dyber Root CA
Algorithm
ML-DSA-65 (FIPS 204)
Key Usage
Certificate Sign, CRL Sign
Basic Constraints
CA:TRUE (critical)
Valid From
2026-06-11 16:49:40 UTC
Valid To
2046-06-06 16:49:40 UTC
Serial
14:2C:D8:6E:0D:75:DA:09:0F:F5:7B:DE:87:A6:A2:DB:52:43:DD:42
Subject Key ID
DA:A9:0D:C2:80:CD:7B:FD:C6:D4:25:28:7A:53:FA:95:AC:BD:17:A7
SHA-256 Fingerprint
56:5D:63:7A:46:6E:DF:22:74:FC:7A:6B:5D:A9:91:FE:B0:30:13:75:48:FF:D2:E1:D6:5D:55:48:E5:91:E1:93

Dyber Device Intermediate CA

Subject
C=US, ST=Maryland, L=Annapolis, O=Dyber, Inc., OU=Device Attestation, CN=Dyber Device Intermediate CA
Issuer
C=US, ST=Maryland, L=Annapolis, O=Dyber, Inc., CN=Dyber Root CA
Algorithm
ML-DSA-65 (FIPS 204)
Key Usage
Certificate Sign, CRL Sign
Basic Constraints
CA:TRUE, pathlen:0 (critical)
Valid From
2026-06-11 16:50:10 UTC
Valid To
2036-06-08 16:50:10 UTC
Serial
38:50:B7:64:D5:53:2C:43:01:40:B8:F1:A9:22:9A:54:1C:55:BD:0C
Subject Key ID
44:4E:40:0C:BD:29:01:8E:2F:95:6D:56:20:AB:74:D4:46:05:BD:03
Authority Key ID
DA:A9:0D:C2:80:CD:7B:FD:C6:D4:25:28:7A:53:FA:95:AC:BD:17:A7
CRL Dist. Point
https://dyber.org/pki/crl.pem
OCSP Responder
https://ocsp.dyber.org
SHA-256 Fingerprint
D8:3D:C7:0E:E1:A8:7F:BD:F0:66:6D:EB:21:1D:68:75:83:7E:43:09:56:E5:36:03:A5:A9:4E:82:FA:76:37:EF
Downloads and Endpoints
Bundle (PEM)
Root + intermediate concatenated. For importing the full trust chain in a single file.
Bundle (ZIP)
All certificates, CRL, and a README with import instructions for airgapped environments.
CRL https://dyber.org/pki/crl.pem Download
OCSP https://ocsp.dyber.org Live
Policy https://dyber.org/pki/policy/ View
CPS https://dyber.org/pki/cps/ View
Ceremony https://dyber.org/pki/key-ceremony/ View
JSON https://dyber.org/pki/metadata.json Fetch

SSL.com EV Code Signing Certificate

Dyber firmware binaries, SDK releases, and driver packages are signed with an Extended Validation (EV) code signing certificate issued by SSL.com. This is a separate trust chain from the device attestation PKI above. Code signing provides end-user assurance that downloaded software is authentic and unmodified.

Subject
Dyber, Inc.
Issuer
SSL.com EV Code Signing Intermediate CA RSA R3
Type
EV Code Signing (Extended Validation)
Valid From
2026-03-31
Valid To
2027-03-31
Signing Method
eSigner Cloud Signing (FIPS 140-2 Level 3 HSM)
Platforms
Windows (Authenticode), Linux (PGP/GPG cosign), macOS (notarization)

Verification. All Dyber SDK and firmware releases published on GitHub (github.com/dyber-pqc) carry an Authenticode signature from this certificate. On Windows, right-click any signed binary, select Properties, then Digital Signatures to verify. On Linux, use osslsigncode verify or check the accompanying .sig file with GPG.

Why classical RSA? No certificate authority currently issues PQC code signing certificates at the EV assurance level required by operating system trust stores (Windows SmartScreen, macOS Gatekeeper). The SSL.com EV certificate uses RSA because that is what the ecosystem accepts today. All Dyber releases also carry an ML-DSA-65 cosignature from the Dyber Device Intermediate CA, verifiable with the trust chain published on this page. When PQC EV code signing becomes commercially available, Dyber will transition to a PQC-native certificate.

What Dyber device certificates attest to

Every Dyber hardware device (QUAC-100, QuantaSE, QuantaTPM, QuantaM2, QuantaHSM, QuantaRNG) is provisioned with a unique Endorsement Key (EK) certificate at manufacturing time. This certificate is signed by the Dyber Device Intermediate CA, which is itself signed by the Dyber Root CA. The certificates published on this page form the trust anchor for that chain.

A valid, unrevoked device EK certificate attests to three things: (1) the device is genuine Dyber hardware produced in an authorized manufacturing facility, (2) the firmware loaded on the device at provisioning time was authentic and unmodified, and (3) the device had not been tampered with at the time of provisioning. The certificate does not attest to the current firmware state or physical integrity after shipment. For runtime firmware attestation, use the device's secure boot log and remote attestation protocol documented in the QuantaCore SDK.

The CRL is updated every 7 days. Revocation may occur if a device is reported compromised, if a manufacturing defect affects a batch, or if a firmware vulnerability requires key rotation. For revocation requests, contact legal@dyber.org. The full certificate policy is available at /pki/policy/.

On-device Certificate Storage

For environments without network access to dyber.org or ocsp.dyber.org, EK certificates are also stored on-device and exportable via the management interface. Use the QuantaCore SDK or the device CLI to extract the full certificate chain:

Shell
# Export device EK certificate chain
dyber-cli device cert export --format pem --output device-chain.pem

# Verify the chain offline against the bundle
dyber-cli cert verify --ca-bundle /path/to/bundle.pem --cert device-chain.pem

# Or with oqs-provider + OpenSSL
openssl verify -CAfile bundle.pem -untrusted intermediate-ca.pem device-ek.pem

The bundle.zip download includes a README with step-by-step import instructions for airgapped environments, including trust store configuration for common operating systems and HSM platforms.

Automation Endpoint

For automated trust chain import, certificate monitoring, and compliance tooling, the PKI metadata is available as structured JSON.

GET /pki/metadata.json
curl -s https://dyber.org/pki/metadata.json | python3 -m json.tool