| Internet-Draft | Merchant Identity Assertions | July 2026 |
| Anders | Expires 5 January 2027 | [Page] |
Existing work helps a relying party determine whether an automated client is authorized to initiate a transaction. This document addresses the complementary problem: how that client can obtain a verifiable identity statement about the merchant that will receive the resulting payment, before the transaction is completed.¶
This document defines a Merchant Identity Assertion (MIA): a signed JSON document binding a legal entity claim to a domain name. It specifies the claims schema, the proof envelope, key discovery via a JSON Web Key Set at a well-known URI, third-party issuance with explicit authorization, signing and verification procedures, validity and revocation semantics, and an optional signed Evaluation Result Token that records the outcome of a verification check as a portable audit artifact.¶
This document is informational. It defines a discovery and verification mechanism only. It does not define trust scoring, merchant ranking, payment authorization, or agent identity. It complements existing agent identity and payment authorization protocols without modifying them.¶
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 5 January 2027.¶
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 rapid growth of autonomous AI agents executing financial transactions on behalf of human principals has created a new class of trust requirements that existing protocols do not fully address.¶
Current work in agent identity -- including IETF Web Bot Auth [WEBBOTAUTH] and payment authorization frameworks such as Visa Trusted Agent Protocol, Mastercard Agent Pay, and the KYAPay Profile [KYAPAY] -- provides mechanisms for a receiving system to verify that an automated client is legitimate and authorized to transact. HTTP Message Signatures [RFC9421] provide the cryptographic foundation on which several of these frameworks build.¶
MIA is independent of these mechanisms but designed to compose with them. A relying party MAY use Web Bot Auth or HTTP Message Signatures to authenticate itself to the merchant's MIA endpoint, and the merchant MAY use the same mechanisms to authenticate its inbound transaction request from the agent. The MIA itself is fetched as a static signed document and does not require any specific transport-layer authentication. This independence is intentional: it allows MIA verification to occur in deployment contexts where transport-coupled signing is not available, while permitting transport-coupled signing where it is.¶
These mechanisms answer: "Is this agent who it claims to be, and is it authorized to pay?"¶
A complementary question remains unanswered by existing standards: "Is the merchant this agent intends to pay who it claims to be?"¶
In human-mediated commerce, consumers evaluate merchant identity through visual cues, brand recognition, and accumulated reputation. Autonomous agents lack these faculties. Without a machine-readable, cryptographically verifiable merchant identity mechanism, agents must either trust merchant identity claims implicitly -- creating fraud exposure -- or implement proprietary verification mechanisms that are not interoperable.¶
This document defines the Merchant Identity Assertion (MIA): a minimal, interoperable signed JSON document that enables any autonomous agent to verify merchant identity before executing a transaction.¶
The MIA is designed to:¶
This document does not define trust scoring algorithms, merchant ranking systems, payment authorization protocols, or agent identity mechanisms. Those concerns are addressed by other specifications.¶
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, as shown here.¶
Consider an autonomous procurement agent operating on behalf of a corporate principal. The agent receives an invoice from supplier.example.com for goods delivered under an existing master services agreement. The agent has standing authorization to settle invoices below a configured threshold without human review.¶
Before authorizing payment, the agent needs to answer a question that has no standardized protocol response today: is the legal entity operating supplier.example.com the same entity named on the underlying agreement? The agent has the invoice, a domain name, and a payment destination. It has no machine-readable, cryptographically verifiable statement that binds the domain to a specific legal entity, jurisdiction, and registration record.¶
In the absence of such a statement, the agent has three options: trust the domain implicitly, defer to a human reviewer (defeating the automation), or rely on a proprietary verification service whose attestations are not interoperable with other agents or auditors.¶
This document addresses this gap. It defines a signed, self-hostable assertion that any merchant can publish and any agent can verify, producing a portable audit artifact in the process.¶
More generally, autonomous agents executing financial transactions face a fundamental asymmetry: agent identity protocols enable merchants to verify agents, but no complementary mechanism enables agents to verify merchants.¶
This asymmetry creates the following risks:¶
Without verifiable merchant identity, an agent may be directed to pay a fraudulent entity impersonating a legitimate merchant. Domain spoofing, homograph attacks, and DNS hijacking all represent realistic attack vectors in autonomous transaction flows.¶
Regulated industries including healthcare, government procurement, and financial services require demonstrable proof that vendor identity was verified before payment. No standardized cryptographic mechanism currently exists to produce this proof in autonomous transaction flows.¶
Human principals delegating transaction authority to autonomous agents may wish to restrict transactions to verified merchant entities. Without a machine-readable merchant identity standard, such policies cannot be enforced consistently across agent implementations.¶
Proprietary merchant verification mechanisms implemented by individual agent platforms are not interoperable. A merchant verified by one platform's mechanism provides no assurance to a different platform. A common standard eliminates this fragmentation.¶
The mechanism defined in this document is intentionally narrow. The following are explicitly out of scope:¶
Implementations and deployments MAY layer additional capabilities on top of MIA verification (for example, a relying party may consult external reputation services after MIA verification succeeds). Such layers are out of scope for this document and MUST NOT be implied by the presence of a valid MIA alone.¶
Several existing technologies address adjacent problems. This section describes how MIA relates to each, and why a distinct mechanism is proposed.¶
X.509 certificates bind a public key to a domain name, and Extended Validation (EV) certificates additionally attest to the legal entity operating the domain. However, EV identity information is presented at the TLS layer, is not exposed as structured, queryable data to autonomous agents, and is not designed to be consumed as a transaction-time identity assertion. Certificate Transparency [RFC9162] provides public auditability of certificate issuance but does not surface legal entity claims in a form suitable for machine evaluation. MIA produces a structured JSON assertion that an agent can parse, validate, and retain as an audit artifact alongside transaction records.¶
The W3C Verifiable Credentials Data Model defines a general framework for cryptographically verifiable claims about a subject, and Decentralized Identifiers (DIDs) define resolver-based identity. An MIA could in principle be expressed as a constrained Verifiable Credential profile. This document defines a narrower mechanism intentionally: discovery via a single well-known URI rather than DID resolution across heterogeneous methods, a fixed claim schema scoped to merchant identity, and a wire format optimized for agent verification rather than holder presentation. Future work MAY define an MIA-to-VC mapping for deployments that require it.¶
OAuth 2.0 Dynamic Client Registration [RFC7591] enables a client to register identity metadata with an authorization server. It addresses a different problem: client onboarding within a trust relationship mediated by an authorization server. MIA addresses transaction-time merchant verification across trust boundaries, with no central authorization server and no prior registration relationship between the verifying agent and the merchant.¶
SPIFFE defines workload identity within a trust domain, typically a single organization or federation thereof. MIA addresses cross-organization identity verification between parties with no pre-established trust relationship.¶
DNS-based mechanisms such as DANE [RFC6698] bind keys or certificates to domain names via DNSSEC. MIA uses DNS only as one of two third-party authorization mechanisms (Section 8.2) and carries the structured legal entity claims that DNS records are not designed to convey. A future profile MAY define a DNS record type for MIA discovery; this document defines HTTPS well-known URI discovery as the primary mechanism for compatibility with the broader deployment of HTTPS over DNSSEC.¶
An MIA is a JSON [RFC8259] document served with media type application/merchant-identity+json (Section 15.3). It consists of a Claims Object (Section 7.1 and Section 7.2) and an embedded Proof Object (Section 7.3).¶
The Claims Object is the canonical input to the signing procedure. The Proof Object records the resulting signature and key reference. Both are serialized together as a single JSON document on the wire (Section 7.4).¶
An object identifying the signing entity. MUST contain:¶
The proof field MUST be present in a signed MIA and MUST be a JSON object containing:¶
The keyDirectory URI appears in the assertion payload, which could raise a trust bootstrap concern if a relying party were to trust the payload as the sole source of key discovery information. To avoid this, the relying party MUST derive the authoritative key directory location from proof.verificationMethod and MUST NOT rely on issuer.keyDirectory as the sole key discovery path. Relying parties SHOULD additionally verify that the domain in verificationMethod matches issuer.domain as a consistency check.¶
An MIA is serialized as a single JSON document. The Claims Object fields (Section 7.1 and Section 7.2) and the proof field (Section 7.3) appear at the top level of this JSON document.¶
The document MUST be served over HTTPS with:¶
Content-Type: application/merchant-identity+json¶
Implementations MUST NOT serve or accept MIA documents over plain HTTP.¶
The version field in the Claims Object identifies the MIA specification version, not the issuer's software version or assertion content version. This document defines version 1.¶
The version field follows a strict-rejection model: relying parties MUST reject assertions with unrecognized version values. New claim fields, optional or required, do not increment the version number; they are added through extensions (Section 7.2) or through new optional fields defined by future documents that update this specification.¶
The version number is incremented only when an incompatible structural change is made to the Claims Object such that an implementation built to an earlier version could not safely interpret the assertion. Examples of incompatible changes include: removal of a required field, change in the canonicalization algorithm, or change in the meaning of an existing field.¶
The proof.type field follows the same model independently. The version number in the proof type identifier (currently "MerchantIdentityProof-v1") increments only on incompatible changes to the proof envelope structure itself, distinct from algorithm changes (which are signaled via proof.alg per Section 14.9).¶
The following is a non-normative example of a complete signed MIA document:¶
{
"version": 1,
"subject": "supplier.example.com",
"legalName": "Example Supply Corporation",
"entityType": "corporation",
"jurisdiction": "US",
"issuedAt": "2026-04-15T00:00:00Z",
"expiresAt": "2027-04-15T00:00:00Z",
"issuer": {
"name": "Example Trust Registry",
"domain": "trust.example.org",
"keyDirectory": "https://trust.example.org/.well-known/jwks.json"
},
"registrationId": "12-3456789",
"evidenceUris": [
"https://www.gleif.org/lei/5493001KJTIIGC8Y1R12"
],
"proof": {
"type": "MerchantIdentityProof-v1",
"alg": "Ed25519",
"created": "2026-04-15T00:00:00Z",
"verificationMethod":
"https://trust.example.org/.well-known/jwks.json#key-01",
"proofValue": "MGViZDcwYTk...86-char-base64url-signature"
}
}¶
A merchant MAY self-issue an MIA and publish it at:¶
https://{subject-domain}/.well-known/merchant-identity.json¶
This resource MUST be served over HTTPS with:¶
Content-Type: application/merchant-identity+json¶
A relying party wishing to obtain an MIA for a given merchant domain SHOULD first attempt retrieval from this well-known URI.¶
For a self-issued MIA, the issuer.domain field MUST equal the subject field, and the issuer.keyDirectory MUST resolve to a Key Directory at the subject domain.¶
Merchants MAY authorize a third-party issuer to publish an MIA on their behalf. Before relying on a third-party MIA, the relying party MUST verify that the issuer is authorized by the subject domain using one of the following mechanisms:¶
a) DNS TXT Authorization Record:¶
The subject domain MUST publish a DNS TXT record at the name _mia-auth.{subject-domain}:¶
_mia-auth.supplier.example.com. IN TXT
"v=mia1; issuer=trust.example.org"¶
The issuer value MUST exactly match the issuer.domain field in the MIA.¶
b) HTTP Delegation Document:¶
The subject domain MUST publish a Merchant Identity Delegation Document (MIDD) at:¶
https://{subject-domain}/.well-known/mia-delegation.json¶
An MIDD is a distinct document type from an MIA. It MUST be a JSON object signed using the same proof structure defined in Section 7.3 and MUST contain:¶
The MIDD MUST be served over HTTPS with:¶
Content-Type: application/merchant-delegation+json¶
Relying parties MUST verify the MIDD proof using a key hosted at the subject domain's Key Directory before accepting the named issuer as authorized. See Section 15.4 for the media type registration.¶
A subject domain that authorizes a third-party issuer via MIDD MUST publish a Key Directory at the location identified by the proof.verificationMethod field of the MIDD itself. The Key Directory MUST contain the public key whose corresponding private key signed the MIDD. This Key Directory is operated by the subject domain and is distinct from any Key Directory operated by the third-party issuer to which delegation is granted. A subject domain that uses only DNS TXT third-party authorization (mechanism a) is not required to operate a Key Directory.¶
Relying parties MUST treat an MIA as invalid if neither authorization mechanism is satisfied.¶
An MIA is structurally valid if it satisfies the verification procedure in Section 10.4. Structural validity is a necessary condition for relying on an assertion, but it is not, by itself, a sufficient condition for high-assurance use.¶
This document defines no normative assurance levels. However, the protocol surfaces enough information for a relying party to apply its own policies. This section describes the issuance models the protocol supports and the corresponding signals available to relying parties.¶
A merchant may self-issue an MIA: the issuer.domain equals the subject, and the assertion is signed by a key published at the subject domain's Key Directory. Self-issuance demonstrates control of the subject domain at the time of signing and provides cryptographic attribution of the claims to whoever controls the domain. It does not, by itself, demonstrate that the legal entity claims (legalName, entityType, jurisdiction, registrationId) correspond to the actual entity operating the domain.¶
A merchant may authorize a third-party issuer per Section 8.2. The relying party can then evaluate the assertion as the joint product of two signals: the merchant's authorization of the issuer (proven by the DNS TXT record or signed delegation document at the subject domain) and the issuer's attestation to the merchant's identity claims. The strength of the resulting assurance depends on the practices of the named issuer, which are out of scope for this document.¶
An MIA MAY include the optional evidenceUris field (Section 7.2), referencing publicly accessible authoritative records that corroborate identity claims (for example, a GLEIF LEI record, a government business registry entry, or a public regulator filing). The evidenceUris field allows a relying party, or an automated verification service acting on the relying party's behalf, to check the consistency of the MIA's claims against independent sources at verification time.¶
This document does not require relying parties to fetch or validate evidenceUris. Implementations MAY define policies that condition acceptance on successful evidence retrieval and consistency checks; such policies are deployment-specific.¶
Relying parties operating in regulated, high-value, or otherwise high-stakes contexts SHOULD define explicit policies for which issuance models they accept. Examples of policies a relying party MAY adopt include:¶
Such policies are out of scope for this specification. The protocol exposes the inputs; the policy decisions belong to the relying party and its principals.¶
This document defines a single mandatory-to-implement signature algorithm: the Edwards-Curve Digital Signature Algorithm (EdDSA) with the Ed25519 curve [RFC8032], identified in the proof.alg field as "Ed25519". All conforming issuers and relying parties MUST support this algorithm.¶
Future specifications MAY define additional algorithm identifiers; see Section 14.9 for the extension model and post-quantum migration considerations.¶
Issuers MUST publish a JSON Web Key Set [RFC7517] at the HTTPS URI in the issuer.keyDirectory field. This document is the Key Directory.¶
Key Directory entries used for MIA signing with the Ed25519 algorithm MUST include:¶
JWK parameters MUST be appropriate for the algorithm identified in the proof.alg field of the assertion the key is used to verify, per [RFC7517]. Specifications defining additional algorithm identifiers (Section 14.9) MUST specify the corresponding JWK parameter requirements.¶
The Key Directory MUST be served over HTTPS with appropriate HTTP caching headers. Relying parties SHOULD cache key material per those headers to reduce verification latency and network load. Implementations MUST NOT cache key material beyond the lifetime indicated by the HTTP cache directives, and MUST re-fetch on signature verification failure to accommodate key rotation. Issuers SHOULD set cache lifetimes that balance verification performance against key rotation responsiveness; values between one hour and 24 hours are RECOMMENDED.¶
If the Key Directory is unreachable during verification, relying parties MUST NOT accept the assertion as verified. Relying parties MAY retry per their own operational policies but MUST NOT fall back to cached keys whose cache lifetime has expired.¶
To produce an MIA signature, the issuer MUST:¶
A relying party MUST perform the following steps:¶
A relying party MUST NOT act on an assertion that fails any verification step.¶
This document distinguishes two categories of change that affect the validity of a previously issued MIA:¶
The protocol addresses these two categories through complementary mechanisms.¶
Relying parties MUST NOT accept assertions for which the current time is at or after the expiresAt value.¶
Issuers SHOULD limit assertion validity periods. Validity periods of 90 days or less are RECOMMENDED for issuers with automated re-issuance pipelines.¶
Issuers MUST re-issue assertions promptly when material identity information changes. Re-issuance is the primary mechanism for identity revocation; the previous assertion is allowed to expire on its own schedule unless explicit revocation is also signaled.¶
Relying parties in high-stakes or regulated contexts SHOULD retrieve a fresh assertion rather than relying on a cached copy when the cached copy is older than 24 hours, regardless of the expiresAt value.¶
Issuers MAY set HTTP cache directives on the MIA endpoint. Relying parties MAY honor these directives but MUST NOT cache an MIA beyond its expiresAt value regardless of HTTP cache headers, and MUST NOT cache an MIA whose Cache-Control directives explicitly forbid caching. Where issuer-supplied cache directives permit caching beyond the recency thresholds defined in this section, the more restrictive policy applies.¶
Issuers MAY support explicit revocation by including a revocationUri extension field in the Claims Object. If present, this field MUST be an HTTPS URI that resolves to a JSON object with at least a boolean "revoked" field and a "checkedAt" string in RFC 3339 format indicating when the revocation status was last updated by the issuer.¶
Relying parties MAY check this URI before relying on an assertion. Relying parties in high-stakes or regulated contexts SHOULD do so. The revocationUri endpoint MUST be served over HTTPS with valid certificate validation.¶
This document does not define a normative revocation list format. A future specification MAY define one for deployments at scale.¶
Operational revocation through signing-key rotation is supported by the Key Directory mechanism (Section 10.2). When an issuer rotates keys, it removes the old key from its Key Directory. Relying parties that follow the cache requirements in Section 10.2 will fail signature verification on assertions signed with revoked keys once the cache lifetime elapses.¶
Issuers MUST remove compromised keys from the Key Directory without delay and SHOULD re-issue all outstanding assertions previously signed with the compromised key.¶
A verification service MAY issue an Evaluation Result Token (ERT) after successfully verifying an MIA. The ERT is a signed JWT [RFC7519] that serves as a portable audit artifact confirming that verification was performed.¶
The ERT is an optional layer. Its issuance does not alter the validity of the underlying MIA.¶
No consumer or agent identity fields SHALL be included in an ERT without explicit principal consent.¶
The ERT MUST be signed as a JWS [RFC7515] using EdDSA with Ed25519 [RFC8032]. The JWS Protected Header MUST include:¶
Implementations MUST follow JWT Best Current Practices [RFC8725], including algorithm validation and rejection of the none algorithm.¶
The following is a non-normative example of a decoded ERT payload:¶
{
"iss": "trust.example.org",
"sub": "supplier.example.com",
"iat": 1776254400,
"exp": 1776254700,
"jti": "f7a2c9e1b4d8",
"mia_verified": true,
"mia_subject": "supplier.example.com",
"mia_issued_at": "2026-04-15T00:00:00Z",
"mia_issuer_domain": "trust.example.org"
}¶
A relying party MAY include the ERT in payment metadata or transaction records to provide downstream parties with a verifiable audit artifact that pre-transaction merchant identity verification occurred.¶
MIA documents MUST NOT include personal data about natural persons except where the subject is a sole proprietor, such disclosure is legally required in the jurisdiction, and the natural person has provided explicit consent.¶
The evidenceUris field, if included, reveals which third-party registries were used to corroborate the merchant's identity. Issuers SHOULD assess the privacy implications of each URI before inclusion.¶
Real-time retrieval of MIAs from well-known URIs or Key Directories reveals which merchants a relying party intends to transact with. Implementations SHOULD use caching and pre-fetching strategies to reduce this correlation risk.¶
An issuer hosting MIAs at well-known URIs, and the operator of any Key Directory, observes which network endpoints retrieve which assertions. Operators of verification-as-a-service offerings, third-party issuers, and CDNs in the retrieval path can therefore construct correlation graphs linking relying parties to merchant-domain queries. Issuers and intermediaries SHOULD NOT log or retain the source IP, principal identifier, or session identifier of MIA retrievals beyond what is operationally necessary, and MUST NOT share such retrieval metadata with third parties without the requesting relying party's consent. Operators of verification services that issue ERTs on behalf of relying parties MUST ensure that retrieval logs are not cross-linked with ERT issuance records in ways that would defeat the consumer principal privacy requirements in Section 13.5.¶
ERTs as defined in Section 12 MUST NOT include consumer or agent principal identifiers. Verification services MUST NOT log consumer identifiers in association with merchant verification events without explicit consumer consent.¶
The ERT jti claim provides a unique token identifier. Relying parties MUST maintain a jti cache for at least the duration of the token's validity window (exp - iat), plus a clock-skew allowance of at least 60 seconds, and MUST reject any ERT whose jti has been seen previously. The RECOMMENDED maximum ERT validity of 300 seconds bounds the size of this cache.¶
Relying parties verifying iat and exp claims SHOULD permit clock skew of up to 60 seconds in either direction relative to the relying party's local clock. Implementations operating in environments with reliable time synchronization (e.g., NTP-disciplined clocks) MAY use a smaller skew allowance. Implementations MUST NOT permit skew exceeding 300 seconds, as doing so would extend the effective replay window beyond the token's intended lifetime.¶
If an issuer's signing key is compromised, all MIA documents signed with that key MUST be treated as invalid. Issuers MUST maintain key rotation procedures and MUST remove compromised keys from their Key Directory promptly. Relying parties that cache Key Directory material MUST re-fetch on signature verification failure.¶
An MIA is bound to a domain name. Transfer of that domain to a new owner does not automatically invalidate outstanding assertions. Issuers MUST implement procedures to detect domain transfer and revoke or re-evaluate affected assertions without delay.¶
A third-party issuer operating in bad faith may publish false assertions. Relying parties SHOULD NOT treat all issuers as equally trustworthy. Relying parties MAY maintain allowlists of trusted issuer domains and SHOULD treat assertions from unknown issuers with heightened scrutiny. The third-party authorization requirement in Section 8.2 ensures that an issuer cannot publish an MIA for a domain that has not explicitly authorized it, but does not guarantee the issuer itself is trustworthy.¶
Merchant legal standing may change after assertion issuance (e.g., insolvency, license revocation, sanctions designation). Relying parties in regulated industries MUST NOT treat an MIA as sole evidence of current compliance and SHOULD supplement MIA verification with jurisdiction-appropriate checks for high-value or high-risk transactions.¶
An attacker with network access could substitute an older but still-valid MIA for a more recently issued one. Relying parties SHOULD record the issuedAt timestamp of the assertion used in a transaction and SHOULD reject assertions whose issuedAt predates their recency threshold for the transaction context.¶
DNS TXT records (Section 8.2, mechanism a) are susceptible to cache poisoning if DNSSEC is not deployed. Implementations MUST use DNSSEC-validated resolution where available when performing DNS-based third-party authorization checks. HTTP delegation documents (mechanism b) MUST be retrieved over HTTPS with certificate validation; relying parties MUST reject delegation documents served without a valid TLS certificate.¶
Implementations of the ERT (Section 12) MUST comply with JWT Best Current Practices [RFC8725], including:¶
The MIA proof envelope (Section 7.3) carries an explicit alg field to enable cryptographic agility. This document defines a single algorithm, Ed25519 [RFC8032], as mandatory to implement. Future specifications MAY register additional algorithm identifiers via Standards Action, including post-quantum signature algorithms standardized by NIST such as ML-DSA [FIPS204], and composite signature schemes that combine a classical and a post-quantum algorithm in a single proof.¶
An MIA is a signed assertion, not an encrypted payload. The "harvest now, decrypt later" threat model applicable to confidentiality-protected traffic does not apply directly to MIA documents. The post-quantum concern relevant to this specification is the future forgeability of long-lived merchant signing keys: an adversary in possession of a cryptographically relevant quantum computer could, in principle, recover an Ed25519 private key from observed public-key material and use it to forge assertions. Issuers SHOULD therefore treat assertion validity periods and signing-key rotation cadence as the primary mitigations available within the bounds of this document.¶
Implementations consuming MIAs SHOULD be designed to accommodate additional algorithm identifiers in the proof.alg field without requiring changes to the envelope format or wire structure. Specifications introducing new algorithms MUST define the corresponding JWK parameters in the Key Directory (Section 10.2) and SHOULD address coexistence with deployed Ed25519 keys.¶
The media type registrations below request names in the standards tree. Per Section 3.1 of [RFC6838], standards-tree registrations require approval associated with IETF standards-track processing. The author acknowledges that these registrations are contingent on the disposition of this document; should this document not progress toward standards-track publication, the registrations would be withdrawn or resubmitted under the vendor tree.¶
This document requests registration in the "Well-Known URIs" registry [RFC8615]:¶
This document requests registration in the "Well-Known URIs" registry [RFC8615]:¶
This document requests registration of a new media type per [RFC6838]:¶
This document requests registration of a new media type per [RFC6838]:¶
The author thanks the participants of the IETF web-bot-auth working group for their engagement, and in particular David Schinazi and Rifaat Shekh-Yusef for their guidance in directing this work toward the DISPATCH working group. The author also acknowledges the complementary work in draft-skyfire-kyapayprofile, which addresses agent-side identity in a manner that this document's merchant-side framework is designed to complement.¶
This section is to be removed by the RFC Editor before publication.¶
Changes from -00 to -01 (author revision):¶