Digital Trust Interoperability Lab implements only open, publicly documented standards. This document details each standard used, its purpose, and how it is implemented.
| Standard | Version | Category | RFC/Spec |
|---|---|---|---|
| X.509 | v3 | Certificate format | RFC 5280 |
| PKCS#11 | v2.20+ | Token interface | OASIS |
| PKCS#7 / CMS | Current | Message syntax | RFC 5652 |
| PKCS#1 | v2.1 | RSA signatures | RFC 8017 |
| CryptoAPI | Win32 | Windows API | Microsoft |
| CNG / KSP | Vista+ | Modern Windows | Microsoft |
| FIPS 180-4 | Current | Hash algorithms | NIST |
| OCSP | Current | Revocation | RFC 6960 |
| CRL | Current | Revocation | RFC 5280 §5 |
Standard for public key certificate format.
The tool implements:
CertGetCertificateContextProperty)CertGetCertificateChain)Reference: RFC 5280
Message syntax for signed and encrypted data.
The tool uses this for:
Reference: RFC 5652
Standard interface for hardware cryptographic tokens.
The tool implements 9 core test cases:
| Code | Function | Purpose |
|---|---|---|
| P11-01 | C_Initialize |
Library initialization |
| P11-02 | C_GetInfo |
Library version/manufacturer |
| P11-03 | C_GetSlotList |
Enumerate slots |
| P11-04 | C_GetSlotInfo |
Slot capabilities |
| P11-05 | C_GetTokenInfo |
Token identity |
| P11-06 | C_OpenSession |
Session establishment |
| P11-07 | C_GetMechanismList |
Supported algorithms |
| P11-08 | C_FindObjects (Cert) |
Certificate discovery |
| P11-09 | C_FindObjects (Key) |
Private key discovery |
Additionally, for signing:
C_Login (with PIN)C_SignInitC_SignC_LogoutC_FindObjectsInit, C_FindObjectsFinalC_CloseSessionC_FinalizeReference: OASIS PKCS#11
RSA cryptography standard. The tool uses:
ASN.1 DigestInfo prefixes (hardcoded per RFC 3447 Appendix A.2.4):
SHA-1: 30 21 30 09 06 05 2b 0e 03 02 1a 05 00 04 14
SHA-256: 30 31 30 0d 06 09 60 86 48 01 65 03 04 02 01 05 00 04 20
SHA-384: 30 41 30 0d 06 09 60 86 48 01 65 03 04 02 02 05 00 04 30
SHA-512: 30 51 30 0d 06 09 60 86 48 01 65 03 04 02 03 05 00 04 40
These prefixes are prepended to the hash value before RSA signing
via PKCS#11’s CKM_RSA_PKCS mechanism.
Reference: RFC 8017
Secure Hash Standard.
The tool supports:
Implementation paths:
CryptCreateHash)CryptCreateHash with SHA-2 ALG_IDs)Reference: FIPS 180-4
Legacy Windows crypto interface (Windows 2000+).
Used for:
CryptEnumProviders)CryptAcquireContext)CryptCreateHash, CryptHashData)CryptSignHash)CryptVerifySignature)Reference: Microsoft CryptoAPI Documentation
Modern Windows crypto interface (Vista+).
Used for:
NCryptEnumProviders)BCryptCreateHash)NCryptOpenKey, NCryptSignHash)Reference: Microsoft CNG Documentation
Online Certificate Status Protocol.
The tool uses Windows’ built-in OCSP support via
CertGetCertificateChain with revocation flags:
CERT_CHAIN_REVOCATION_CHECK_END_CERTCERT_CHAIN_REVOCATION_CHECK_CACHE_ONLYReference: RFC 6960
Certificate Revocation Lists.
Handled automatically by Windows chain building.
Reference: RFC 5280 §5
RFC 3161 — Internet X.509 PKI Time-Stamp Protocol
Planned for Phase 6. Will include:
Reference: RFC 3161
NIST PQC Standards (once finalized)
Planned for Phase 8. Will include:
All standards used are:
Digital Trust Interoperability Lab uses zero non-standard features. This includes:
This ensures the tool works uniformly across all vendors and Windows versions.
For each standard, the tool provides diagnostic evidence:
Any RFC 5280-compliant certificate is correctly parsed and displayed with all fields.
Any PKCS#11 v2.20+ compliant library passes all 9 basic tests (P11-01 through P11-08 always pass; P11-09 may WARNING due to silent mode).
Cross-Path Signature Determinism proves that any two RSA-PKCS#1 v1.5 compliant implementations produce byte-identical signatures given the same input and key.
Full RFC and specification URLs:
| Standard | URL |
|---|---|
| RFC 5280 (X.509) | https://tools.ietf.org/html/rfc5280 |
| RFC 5652 (CMS) | https://tools.ietf.org/html/rfc5652 |
| RFC 6960 (OCSP) | https://tools.ietf.org/html/rfc6960 |
| RFC 8017 (PKCS#1 v2.2) | https://tools.ietf.org/html/rfc8017 |
| RFC 3161 (TSP) | https://tools.ietf.org/html/rfc3161 |
| FIPS 180-4 | https://csrc.nist.gov/publications/detail/fips/180/4/final |
| PKCS#11 v2.20 | http://docs.oasis-open.org/pkcs11/ |
| CryptoAPI Docs | https://learn.microsoft.com/en-us/windows/win32/seccrypto/ |
| CNG Docs | https://learn.microsoft.com/en-us/windows/win32/seccng/ |
Digital Trust Interoperability Lab — 100% Standards-Based