| Internet-Draft | PQCHC X.509 Extension | June 2026 |
| Vicente | Expires 28 December 2026 | [Page] |
This document defines a non-critical X.509 certificate extension, the Post-Quantum Hybrid Commitment (PQCHC), that allows a certificate issued with a classical or hybrid key to carry a verifiable, cryptographically bound commitment to a specific future post-quantum algorithm and a Commitment Validity Time. The PQCHC commitment binds to a hash of the committed future public key and algorithm identifier, enabling a relying party to verify that a subsequently issued post-quantum certificate honors the earlier commitment. This mechanism provides a crypto-agility signal for certificate-lifecycle automation, including ACME Renewal Information (ARI), to plan and verify PQC migration.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 3 December 2026.¶
Copyright (c) 2026 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
The finalization of NIST post-quantum standards FIPS 203 [FIPS203], FIPS 204 [FIPS204], and FIPS 205 [FIPS205] establishes the algorithms to which existing PKIs must migrate. NIST IR 8547 [IR8547] sets a deprecation calendar that makes migration time-bounded.¶
Migration of an X.509 [RFC5280] hierarchy is gated by the certificate lifecycle: a relying party is not protected against a cryptographically relevant quantum computer (CRQC) until quantum-vulnerable certificates have expired or been replaced. During the multi-year transition window, a relying party frequently holds a certificate that is still classical (or hybrid) but whose subject intends to migrate to a specific post-quantum algorithm at a known time. Today there is no interoperable, machine-verifiable way to express that intent inside the certificate itself.¶
This document addresses that gap. PQCHC allows a certificate that is not yet composite to carry a machine-verifiable commitment to the post-quantum algorithm and the time by which the subject intends to migrate, such that lifecycle automation (for example, ACME Renewal Information [RFC9773]) can act on it and a relying party can later verify the migration was honored.¶
Algorithm identifiers in this document use the registrations defined in [RFC9881] (ML-DSA), [RFC9909] (SLH-DSA), and [RFC9935] (ML-KEM). This document uses the post-quantum terminology of [RFC9794].¶
[REDDYPQCOMMIT] defines a declarative post-quantum continuity signal expressed as a period of time, without a cryptographic binding to a specific future key. PQCHC differs by binding the commitment to a hash of the committed future public key and algorithm identifier, permitting later verification that an issued post-quantum certificate honors the prior commitment.¶
Composite certificates ([COMPOSITESIGS]) address the transition phase. PQCHC addresses the pre-transition phase. The two mechanisms are not mutually exclusive; see Section 5 for the interaction model.¶
This section states requirements that a conforming PQCHC implementation SHOULD satisfy.¶
GeneralizedTime. Relying parties MUST NOT enforce commitment semantics after this time.¶
suggestedWindow falls at or before the Commitment
Validity Time, and the resulting renewal uses the committed key.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals.¶
subjectPublicKeyInfo the
subject intends to use for the committed algorithm in a future certificate.¶
GeneralizedTime.¶
The PQCHC extension is a non-critical X.509 v3 certificate extension. Relying parties that do not understand the extension MUST ignore it per [RFC5280].¶
PQCHC-2025
{ iso(1) identified-organization(3) dod(6) internet(1)
private(4) enterprise(1) 65953 modules(0) pqchc(1) }
DEFINITIONS IMPLICIT TAGS ::= BEGIN
IMPORTS
AlgorithmIdentifier FROM PKIX1Explicit88
{ iso(1) identified-organization(3) dod(6) internet(1)
security(5) mechanisms(5) pkix(7) id-mod(0) id-pkix1-explicit(18) }
DigestInfo FROM CryptographicMessageSyntax2004
{ iso(1) member-body(2) us(840) rsadsi(113549)
pkcs(1) pkcs-9(9) smime(16) modules(0) cms-2004(24) }
EXTENSION FROM PKIX-CommonTypes-2009
{ iso(1) identified-organization(3) dod(6) internet(1)
security(5) mechanisms(5) pkix(7) id-mod(0)
id-mod-pkixCommon-02(57) } ;
id-ce-pqchc-experimental OBJECT IDENTIFIER ::= { 1 3 6 1 4 1 65953 1 1 }
-- id-ce-pqchc OBJECT IDENTIFIER ::= { id-ce TBD1 }
ext-pqchc EXTENSION ::= {
SYNTAX PQCHCommitment
IDENTIFIED BY id-ce-pqchc-experimental }
PQCHCommitment ::= SEQUENCE {
commitmentValid BOOLEAN DEFAULT TRUE,
committedAlgorithm AlgorithmIdentifier,
committedKeyHash DigestInfo,
commitmentNotAfter GeneralizedTime,
policyURI IA5String OPTIONAL }
END
¶
Implementation notes: AlgorithmIdentifier for ML-DSA, ML-KEM, and SLH-DSA
MUST carry a non-null algorithm OID with the parameters field absent, consistent
with [RFC9881], [RFC9935], and [RFC9909]. GeneralizedTime
is used rather than UTCTime to support dates beyond 2049, consistent with
[RFC5280] Section 4.1.2.5.2.¶
When a subsequently issued certificate for the same subject presents a post-quantum key, the following verification procedure applies:¶
function VerifyPQCHCCommitment(committingCert, candidatePQCert):
ext = committingCert.findExtension(id-ce-pqchc)
if ext is absent: return NOT_COMMITTED
commitment = DER_DECODE(ext.extnValue, PQCHCommitment)
if commitment.commitmentValid == FALSE: return COMMITMENT_INVALIDATED
if candidatePQCert.subjectPublicKeyInfo.algorithm
!= commitment.committedAlgorithm: return ALGORITHM_MISMATCH
spkiBytes = DER_ENCODE(candidatePQCert.subjectPublicKeyInfo)
hashAlg = commitment.committedKeyHash.digestAlgorithm
computed = HASH(hashAlg, spkiBytes)
if computed != commitment.committedKeyHash.digest:
return HASH_MISMATCH
if candidatePQCert.validity.notBefore > commitment.commitmentNotAfter:
return COMMITMENT_EXPIRED
return COMMITMENT_HONORED
¶
A relying party MUST NOT treat a PQCHC commitment as a reason to accept a certificate it would otherwise reject. The commitment is advisory.¶
When a composite certificate also carries a PQCHC extension, the
committedAlgorithm field MUST use the composite algorithm OID as defined in
[COMPOSITESIGS], and committedKeyHash MUST be over the DER-encoded
composite subjectPublicKeyInfo.¶
Migration Phase Mechanism ------------------------- ---------------------------------------- Pre-migration PQCHC: forward-key-hash commitment (classical cert) to specific PQC algorithm and time Transition Composite ML-DSA: simultaneous (composite cert) classical AND PQ in one certificate Post-migration Pure PQ cert satisfies prior PQCHC (pure PQ cert) commitment; neither mechanism needed¶
An ACME CA that wishes to honor PQCHC commitments SHOULD constrain the
ARI scheduling window so that suggestedWindow.end is at or before
min(certificate.notAfter, commitment.commitmentNotAfter).
When the ACME server receives an order with a replaces field referencing
a PQCHC-bearing certificate, it SHOULD verify that the CSR's
subjectPublicKeyInfo hashes to committedKeyHash.digest. An order that
fails this check SHOULD be rejected with an orderNotReady error.¶
The commitment is advisory and MUST NOT be treated as authentication of the committed post-quantum key. A commitment MUST NOT downgrade the validation of the certificate in which it appears.¶
A man-in-the-middle adversary can attempt forced-classical-reissuance during
the PQC transition window. Lifecycle automation SHOULD verify that the renewed
certificate's SPKI hash matches committedKeyHash. Operators participating in
Certificate Transparency can detect classical re-issuance by scanning CT logs for
conflicting subject/SPKI combinations after the commitmentNotAfter deadline.¶
A commitment-substitution adversary attempts to find a second preimage of the committed SPKI under the digest algorithm. Second-preimage attacks are mitigated by the digest-algorithm requirements in Section 7.4. The CA re-issuance path is a CA-compromise scenario; Certificate Transparency provides audit-trail mitigation.¶
Under Grover's algorithm, a quantum adversary can find a preimage of an
n-bit hash in approximately 2^(n/2) quantum queries. For SHA-256, quantum preimage
cost is approximately 2^128, which remains computationally infeasible.
Implementations MUST NOT use MD5, SHA-1, or SHA-224 for committedKeyHash.¶
The committedKeyHash field uses DigestInfo, which carries both the hash
algorithm OID and the hash value, enabling digest algorithm upgrades without
changing the ASN.1 structure. The digest algorithm MUST provide at least 128 bits
of second-preimage resistance against a quantum adversary. SHA-256, SHA-384,
SHA-512, and SHA-3 variants with 256-bit or greater output are acceptable.¶
Operators SHOULD set commitmentNotAfter at or before the NIST IR 8547
[IR8547] deprecation date of the algorithm used to sign the committing
certificate. CA key-generation practices SHOULD require constant-time
implementations of the committed algorithm (see [KyberSlash],
[NTTSIS], [ILPFAULT]).¶
This section is included per [RFC7942].¶
Organization: Sanctum SecOps LLC. An experimental Go implementation covers
encoding/decoding of PQCHCommitment structures, DigestInfo computation, and
commitment verification per Section 4.2. Located at poc/pqchc/
in the companion repository at https://github.com/Sanc-Admin/sanctum-ietf
(private until counsel hand-off). Maturity: Experimental. MUST NOT be deployed
in production without qualified security and legal review.¶
IANA is requested to assign an object identifier for the PQCHC certificate extension from the id-ce arc:¶
id-ce-pqchc OBJECT IDENTIFIER ::= { id-ce TBD1 }¶
For early interoperability testing, the experimental OID
1.3.6.1.4.1.65953.1.1 under the Sanctum SecOps PEN arc MAY be used.
Deployments MUST transition to the IANA-assigned TBD1 value upon RFC publication.¶
Acceptable OIDs for committedKeyHash: id-sha256, id-sha384, id-sha512,
id-sha3-256, id-sha3-384, id-sha3-512. The following MUST NOT be used:
id-md5, id-sha1.¶
All values are synthetic test data. Scenario: a server certificate issued with an ECDSA-P256 key commits to migrating to ML-DSA-65 ([RFC9881]) by 2030-01-01T00:00:00Z.¶
committedAlgorithm OID for id-ml-dsa-65: 2.16.840.1.101.3.4.3.18
committedKeyHash (SHA-256 over synthetic future ML-DSA-65 SPKI):
a3 f8 2d 11 cc 4e 9b 7f e1 05 3a 88 d2 60 b9 4c
7d 19 e2 aa 55 fc 3b 0e 84 c7 21 63 09 f4 1b 8e
(Synthetic value -- not derived from any real key.)
commitmentNotAfter: 20300101000000Z
ASN.1 DER encoding of PQCHCommitment (hex):
30 56 -- SEQUENCE (86 bytes)
01 01 ff -- BOOLEAN TRUE (commitmentValid)
30 0b -- AlgorithmIdentifier SEQUENCE
06 09 -- OID id-ml-dsa-65
60 86 48 01 86 3a 04 03 12
30 27 -- DigestInfo SEQUENCE
30 0d -- digestAlgorithm
06 09 60 86 48 01 65 03 04 02 01 -- id-sha256
05 00
04 20 -- OCTET STRING (32 bytes)
a3 f8 2d 11 cc 4e 9b 7f e1 05 3a 88 d2 60 b9 4c
7d 19 e2 aa 55 fc 3b 0e 84 c7 21 63 09 f4 1b 8e
18 0f 32 30 33 30 30 31 30 31 30 30 30 30 30 30 5a
¶
+------+---------------------------------------+---------------------+ | Year | Event | PQCHC implication | +------+---------------------------------------+---------------------+ | 2030 | NIST: deprecation of 112-bit classical | commitmentNotAfter | | | asymmetric algorithms | SHOULD precede this | +------+---------------------------------------+---------------------+ | 2031 | CNSA 2.0: full enforcement for NSS | MUST complete PQC | | | National Security Systems | migration by 2031. | +------+---------------------------------------+---------------------+ | 2035 | NIST: disallowment of new protection | commitmentNotAfter | | | using quantum-vulnerable algorithms | MUST NOT exceed. | +------+---------------------------------------+---------------------+¶
The author thanks the LAMPS Working Group for the foundational post-quantum X.509 work on which this extension builds.¶