<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lamps-x509-alg-none-09" category="std" consensus="true" submissionType="IETF" updates="5280" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.30.1 -->
  <front>
    <title>Unsigned X.509 Certificates</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-x509-alg-none-09"/>
    <author initials="D." surname="Benjamin" fullname="David Benjamin">
      <organization>Google LLC</organization>
      <address>
        <email>davidben@google.com</email>
      </address>
    </author>
    <date year="2025" month="September" day="04"/>
    <area>Security</area>
    <workgroup>Limited Additional Mechanisms for PKIX and SMIME</workgroup>
    <keyword>self-signed certificate</keyword>
    <abstract>
      <?line 55?>

<t>This document defines a placeholder X.509 signature algorithm that may be used
in contexts where the consumer of the certificate is not expected to verify the
signature. As part of this, it updates RFC 5280.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://davidben.github.io/x509-alg-none/draft-ietf-lamps-x509-alg-none.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-lamps-x509-alg-none/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Limited Additional Mechanisms for PKIX and SMIME Working Group mailing list (<eref target="mailto:spasm@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/spasm/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/spasm/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/davidben/x509-alg-none"/>.</t>
    </note>
  </front>
  <middle>
    <?line 61?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>An X.509 certificate <xref target="RFC5280"/> relates two entities in the PKI: information
about a subject and a proof from an issuer. Viewing the PKI as a graph with
entities as nodes, as in <xref target="RFC4158"/>, a certificate is an edge between the
subject and issuer.</t>
      <t>In some contexts, an application needs standalone subject information instead of
a certificate. In the graph model, the application needs a node, not an edge.
For example, certification path validation (<xref section="6" sectionFormat="of" target="RFC5280"/>) begins at
a trust anchor, or root certification authority (root CA). The application
trusts this trust anchor information out-of-band and does not require an
issuer's signature.</t>
      <t>X.509 does not define a structure for this scenario. Instead, X.509 trust
anchors are often represented with "self-signed" certificates, where the
subject's key signs over itself. Other formats, such as <xref target="RFC5914"/> exist to
convey trust anchors, but self-signed certificates remain widely used.</t>
      <t>Additionally, some TLS <xref target="RFC8446"/> server deployments use self-signed
end entity certificates when they do not intend to present a CA-issued
identity, instead expecting the relying party to authenticate the certificate
out-of-band, e.g. via a known fingerprint.</t>
      <t>These self-signatures typically have no security value, aren't checked by
the receiver, and only serve as placeholders to meet syntactic requirements of
an X.509 certificate.</t>
      <t>Computing signatures as placeholders has some drawbacks:</t>
      <ul spacing="normal">
        <li>
          <t>Post-quantum signature algorithms are large, so including a self-signature
significantly increases the size of the payload.</t>
        </li>
        <li>
          <t>If the subject is an end entity, rather than a CA, computing an X.509
signature risks cross-protocol attacks with the intended use of the key.</t>
        </li>
        <li>
          <t>It is ambiguous whether such a self-signature requires the CA bit in basic
constraints or keyCertSign in key usage. If the key is intended for a
non-X.509 use, asserting those capabilities is an unnecessary risk.</t>
        </li>
        <li>
          <t>If the subject is an end entity, and the end entity's key is not a signing
key (e.g. a KEM key), there is no valid signature algorithm to use with the key.</t>
        </li>
      </ul>
      <t>This document defines a profile for unsigned X.509 certificates, which may be
used when the certificate is used as a container for subject information,
without any specific issuer.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>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 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
    </section>
    <section anchor="constructing-unsigned-certificates">
      <name>Constructing Unsigned Certificates</name>
      <t>This section describes how to construct an unsigned certificate.</t>
      <section anchor="signature">
        <name>Signature</name>
        <t>To construct an unsigned X.509 certificate, the sender MUST set the
Certificate's signatureAlgorithm and TBSCertificate's signature fields each to
an AlgorithmIdentifier with algorithm id-alg-unsigned, defined below:</t>
        <artwork><![CDATA[
  id-alg-unsigned OBJECT IDENTIFIER ::= {1 3 6 1 5 5 7 6 36}
]]></artwork>
        <t>The parameters for id-alg-unsigned MUST be omitted. The Certificate's
signatureValue field MUST be a BIT STRING of length zero.</t>
      </section>
      <section anchor="issuer">
        <name>Issuer</name>
        <t>An unsigned certificate takes the place of a self-signed certificate in
scenarios where the application only requires subject information. It has no
issuer, so some requirements in the profile defined in <xref target="RFC5280"/> cannot
meaningfully be applied. However, the application may have pre-existing
requirements derived from <xref target="X.509"/> and <xref target="RFC5280"/>, so senders MAY construct
the certificate as if it were a self-signed certificate, if needed for
interoperability.</t>
        <t>In particular, the following fields describe a certificate's issuer:</t>
        <ul spacing="normal">
          <li>
            <t>issuer (<xref section="4.1.2.4" sectionFormat="of" target="RFC5280"/>)</t>
          </li>
          <li>
            <t>issuerUniqueID (<xref section="4.1.2.8" sectionFormat="of" target="RFC5280"/>)</t>
          </li>
        </ul>
        <t>The issuer field is not optional, and both <xref target="X.509"/> and
<xref section="4.1.2.4" sectionFormat="of" target="RFC5280"/> forbid empty issuers, so such a value may not be
interoperable with existing applications.</t>
        <t>If the subject is not empty, senders MAY set the issuer to the subject, similar
how they would construct a self-signed certificate.
This may be useful in applications that, for example,
expect trust anchors to have matching issuer and subject. This is, however, a
placeholder value. The unsigned certificate is not considered self-signed or
self-issued.</t>
        <t>Senders MAY alternatively use a short placeholder issuer consisting of a single
relative distinguished name, with a single attribute of type id-rdna-unsigned
and value a zero-length UTF8String. id-rdna-unsigned is defined as follows:</t>
        <artwork><![CDATA[
  id-rdna-unsigned OBJECT IDENTIFIER ::= {1 3 6 1 5 5 7 TBD1 TBD2}
]]></artwork>
        <t>This placeholder name, in the string representation of <xref target="RFC4514"/>, is:</t>
        <artwork><![CDATA[
1.3.6.1.5.5.7.TBD1.TBD2=#0C00
]]></artwork>
        <t>Senders MUST omit the issuerUniqueID field, as it is optional, not applicable,
and already forbidden by <xref section="4.1.2.8" sectionFormat="of" target="RFC5280"/>.</t>
      </section>
      <section anchor="extensions">
        <name>Extensions</name>
        <t>Some X.509 extensions also describe the certificate issuer and thus are not
meaningful for an unsigned certificate:</t>
        <ul spacing="normal">
          <li>
            <t>authority key identifier (<xref section="4.2.1.1" sectionFormat="of" target="RFC5280"/>)</t>
          </li>
          <li>
            <t>issuer alternative name (<xref section="4.2.1.7" sectionFormat="of" target="RFC5280"/>)</t>
          </li>
        </ul>
        <t>Senders SHOULD omit the authority key identifier and issuer alternative name
extensions. <xref section="4.2.1.1" sectionFormat="of" target="RFC5280"/> requires certificates to include
the authority key identifier, but includes an exception for self-signed certificates
used when distributing a public key. This document updates <xref target="RFC5280"/> to also
permit omitting authority key identifier in unsigned certificates.</t>
        <t>Some extensions reflect whether the subject is a CA or an end entity:</t>
        <ul spacing="normal">
          <li>
            <t>key usage (<xref section="4.2.1.3" sectionFormat="of" target="RFC5280"/>)</t>
          </li>
          <li>
            <t>basic constraints (<xref section="4.2.1.9" sectionFormat="of" target="RFC5280"/>)</t>
          </li>
        </ul>
        <t>Senders SHOULD fill in these values to reflect the subject. That is:</t>
        <t>If the subject is a CA, it SHOULD assert the keyCertSign key usage bit and
SHOULD include a basic constraints extensions that sets the cA boolean to TRUE.</t>
        <t>If the subject is an end entity, it SHOULD NOT assert the keyCertSign key usage
bit, and it SHOULD either omit the basic constraints extension or set the cA
boolean to FALSE. Unlike a self-signed certificate, an unsigned certificate does
not issue itself, so there is no need to accommodate a self-signature in either
extension.</t>
      </section>
    </section>
    <section anchor="consuming-unsigned-certificates">
      <name>Consuming Unsigned Certificates</name>
      <t>X.509 signatures of type id-alg-unsigned are always invalid:</t>
      <ul spacing="normal">
        <li>
          <t>When processing X.509 certificates without verifying signatures, receivers MAY
accept id-alg-unsigned.</t>
        </li>
        <li>
          <t>When verifying X.509 signatures, receivers MUST reject id-alg-unsigned.</t>
        </li>
      </ul>
      <t>In particular, X.509 validators MUST NOT accept id-alg-unsigned in the place of
a signature in the certification path.</t>
      <t>It is expected that most unmodified X.509 applications will already be
compliant with this guidance. X.509 applications are thus RECOMMENDED to satisfy these
requirements by ignoring this document, and instead treating id-alg-unsigned as
the same as an unrecognized signature algorithm. An unmodified X.509
validator will be unable to verify the signature (Step (a.1) of
<xref section="6.1.3" sectionFormat="of" target="RFC5280"/>) and thus reject the certification path.
Conversely, in contexts where an X.509 application was ignoring the
self-signature, id-alg-unsigned will also be ignored, but more efficiently.</t>
      <t>In other contexts, an application may require modifications, or limit itself to
particular forms of unsigned certificate. For example, an application might
check self-signedness to classify locally-configured certificates as trust
anchors or untrusted intermediates. Such an application may need to modify its
configuration model or user interface before using an unsigned certificate as a
trust anchor.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>It is best practice to limit cryptographic keys to a single purpose each. If a
key is reused across contexts, applications risk cross-protocol attacks when the
two uses collide. However, in applications that use self-signed end entity
certificates, the subject's key is necessarily used in two ways: the X.509
self-signature, and the end entity protocol. Unsigned certificates fix this key
reuse by removing the X.509 self-signature.</t>
      <t>If an application accepts id-alg-unsigned as part of a certification path, or
in any other context where it is necessary to verify the X.509 signature, the
signature check would be bypassed. Thus, <xref target="consuming-unsigned-certificates"/>
prohibits this and recommends that applications treat id-alg-unsigned the same
as any other previously unrecognized signature algorithm. Non-compliant
applications risk vulnerabilities analogous to those described in <xref target="JWT"/> and
<xref section="1.1" sectionFormat="of" target="I-D.ietf-jose-deprecate-none-rsa15"/>.</t>
      <t>The signature in a self-signed certificate is self-derived and thus of limited
use to convey trust. However, some applications might use it as an integrity
check to guard against accidental storage corruption, etc. An unsigned
certificate does not provide any integrity check. Applications checking
self-signature for integrity SHOULD instead use some other mechanism, such as an
external hash that is verified out of band.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="module-identifier">
        <name>Module Identifier</name>
        <t>IANA is requested to add the following entry in the "SMI Security for PKIX
Module Identifier" registry, defined by <xref target="RFC7299"/>:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Decimal</th>
              <th align="left">Description</th>
              <th align="left">References</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TBD</td>
              <td align="left">id-mod-algUnsigned-2025</td>
              <td align="left">[this-RFC]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="algorithm">
        <name>Algorithm</name>
        <t>IANA is requested to add the following entry to the
"SMI Security for PKIX Algorithms" registry <xref target="RFC7299"/>:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Decimal</th>
              <th align="left">Description</th>
              <th align="left">References</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">36</td>
              <td align="left">id-alg-unsigned</td>
              <td align="left">[this-RFC]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="relative-distinguished-name-attribute">
        <name>Relative Distinguished Name Attribute</name>
        <t>To allocate id-rdna-unsigned, this document introduces a new PKIX OID arc for
relative distinguished name attributes:</t>
        <t>IANA is requested to add the following entry to the "SMI Security for PKIX"
registry <xref target="RFC7299"/>:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Decimal</th>
              <th align="left">Description</th>
              <th align="left">References</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TBD1</td>
              <td align="left">Relative Distinguished Name Attribute</td>
              <td align="left">[this-RFC]</td>
            </tr>
          </tbody>
        </table>
        <t>IANA is requested to create the "SMI Security for PKIX Relative Distinguished
Name Attribute" registry within the "Structure of Management Information (SMI)
Numbers (MIB Module Registrations)" group.</t>
        <t>The new registry's description is
"iso.org.dod.internet.security.mechanisms.pkix.rdna (1.3.6.1.5.5.7.TBD1)".</t>
        <t>The new registry has three columns and is initialized with the following values:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Decimal</th>
              <th align="left">Description</th>
              <th align="left">References</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TBD2</td>
              <td align="left">id-rdna-unsigned</td>
              <td align="left">[this-RFC]</td>
            </tr>
          </tbody>
        </table>
        <t>Future updates to this table are to be made according to the Specification
Required policy as defined in <xref target="RFC8126"/>.</t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC5912">
          <front>
            <title>New ASN.1 Modules for the Public Key Infrastructure Using X.509 (PKIX)</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="June" year="2010"/>
            <abstract>
              <t>The Public Key Infrastructure using X.509 (PKIX) certificate format, and many associated formats, are expressed using ASN.1. The current ASN.1 modules conform to the 1988 version of ASN.1. This document updates those ASN.1 modules to conform to the 2002 version of ASN.1. There are no bits-on-the-wire changes to any of the formats; this is simply a change to the syntax. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5912"/>
          <seriesInfo name="DOI" value="10.17487/RFC5912"/>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="JWT" target="https://www.howmanydayssinceajwtalgnonevuln.com/">
          <front>
            <title>How Many Days Has It Been Since a JWT alg:none Vulnerability?</title>
            <author initials="J." surname="Sanderson" fullname="James 'zofrex' Sanderson">
              <organization/>
            </author>
            <date year="2024" month="October" day="09"/>
          </front>
        </reference>
        <reference anchor="X.509">
          <front>
            <title>Information technology - Open Systems Interconnection - The Directory: Public-key and attribute certificate frameworks</title>
            <author>
              <organization>ITU-T</organization>
            </author>
            <date year="2019" month="October"/>
          </front>
          <seriesInfo name="ISO/IEC 9594-8:2020" value=""/>
        </reference>
        <reference anchor="RFC4158">
          <front>
            <title>Internet X.509 Public Key Infrastructure: Certification Path Building</title>
            <author fullname="M. Cooper" initials="M." surname="Cooper"/>
            <author fullname="Y. Dzambasow" initials="Y." surname="Dzambasow"/>
            <author fullname="P. Hesse" initials="P." surname="Hesse"/>
            <author fullname="S. Joseph" initials="S." surname="Joseph"/>
            <author fullname="R. Nicholas" initials="R." surname="Nicholas"/>
            <date month="September" year="2005"/>
            <abstract>
              <t>This document provides guidance and recommendations to developers building X.509 public-key certification paths within their applications. By following the guidance and recommendations defined in this document, an application developer is more likely to develop a robust X.509 certificate-enabled application that can build valid certification paths across a wide range of PKI environments. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4158"/>
          <seriesInfo name="DOI" value="10.17487/RFC4158"/>
        </reference>
        <reference anchor="RFC5914">
          <front>
            <title>Trust Anchor Format</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="S. Ashmore" initials="S." surname="Ashmore"/>
            <author fullname="C. Wallace" initials="C." surname="Wallace"/>
            <date month="June" year="2010"/>
            <abstract>
              <t>This document describes a structure for representing trust anchor information. A trust anchor is an authoritative entity represented by a public key and associated data. The public key is used to verify digital signatures, and the associated data is used to constrain the types of information or actions for which the trust anchor is authoritative. The structures defined in this document are intended to satisfy the format-related requirements defined in Trust Anchor Management Requirements. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5914"/>
          <seriesInfo name="DOI" value="10.17487/RFC5914"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC4514">
          <front>
            <title>Lightweight Directory Access Protocol (LDAP): String Representation of Distinguished Names</title>
            <author fullname="K. Zeilenga" initials="K." role="editor" surname="Zeilenga"/>
            <date month="June" year="2006"/>
            <abstract>
              <t>The X.500 Directory uses distinguished names (DNs) as primary keys to entries in the directory. This document defines the string representation used in the Lightweight Directory Access Protocol (LDAP) to transfer distinguished names. The string representation is designed to give a clean representation of commonly used distinguished names, while being able to represent any distinguished name. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4514"/>
          <seriesInfo name="DOI" value="10.17487/RFC4514"/>
        </reference>
        <reference anchor="I-D.ietf-jose-deprecate-none-rsa15">
          <front>
            <title>JOSE: Deprecate 'none' and 'RSA1_5'</title>
            <author fullname="Neil Madden" initials="N." surname="Madden">
              <organization>Teya</organization>
            </author>
            <date day="2" month="April" year="2025"/>
            <abstract>
              <t>   This document updates [RFC7518] to deprecate the JWS algorithm "none"
   and the JWE algorithm "RSA1_5".  These algorithms have known security
   weaknesses.  It also updates the Review Instructions for Designated
   Experts to establish baseline security requirements that future
   algorithm registrations should meet.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-jose-deprecate-none-rsa15-02"/>
        </reference>
        <reference anchor="RFC7299">
          <front>
            <title>Object Identifier Registry for the PKIX Working Group</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="July" year="2014"/>
            <abstract>
              <t>When the Public-Key Infrastructure using X.509 (PKIX) Working Group was chartered, an object identifier arc was allocated by IANA for use by that working group. This document describes the object identifiers that were assigned in that arc, returns control of that arc to IANA, and establishes IANA allocation policies for any future assignments within that arc.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7299"/>
          <seriesInfo name="DOI" value="10.17487/RFC7299"/>
        </reference>
      </references>
    </references>
    <?line 307?>

<section anchor="asn1-module">
      <name>ASN.1 Module</name>
      <artwork><![CDATA[
SignatureAlgorithmNone
  { iso(1) identified-organization(3) dod(6) internet(1)
    security(5) mechanisms(5) pkix(7) id-mod(0)
    id-mod-algUnsigned-2025(TBD) }

DEFINITIONS IMPLICIT TAGS ::=
BEGIN

IMPORTS
  SIGNATURE-ALGORITHM
  FROM AlgorithmInformation-2009  -- in [RFC5912]
    { iso(1) identified-organization(3) dod(6) internet(1)
      security(5) mechanisms(5) pkix(7) id-mod(0)
      id-mod-algorithmInformation-02(58) }
  ATTRIBUTE
  FROM PKIX-CommonTypes-2009 -- in [RFC5912]
    { iso(1) identified-organization(3) dod(6) internet(1)
      security(5) mechanisms(5) pkix(7) id-mod(0)
      id-mod-pkixCommon-02(57) } ;

-- Unsigned Signature Algorithm

id-alg-unsigned OBJECT IDENTIFIER ::= { iso(1)
   identified-organization(3) dod(6) internet(1) security(5)
   mechanisms(5) pkix(7) alg(6) 36 }

sa-unsigned SIGNATURE-ALGORITHM ::= {
   IDENTIFIER id-alg-unsigned
   PARAMS ARE absent
}

id-rdna-unsigned OBJECT IDENTIFIER ::= { iso(1)
   identified-organization(3) dod(6) internet(1) security(5)
   mechanisms(5) pkix(7) rdna(TBD1) TBD2 }

at-unsigned ATTRIBUTE ::= {
   TYPE UTF8String (SIZE (0))
   IDENTIFIED BY id-rdna-unsigned
}

END
]]></artwork>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Thanks to Bob Beck, Nick Harper, and Sophie Schmieg for reviewing an early
iteration of this document. Thanks to Alex Gaynor for providing a link to cite
for <xref target="JWT"/>. Thanks to Russ Housley for additional input.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
W54KwzUAAA==

-->

</rfc>
