<?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-08" category="std" consensus="true" submissionType="IETF" updates="5280" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.29.0 -->
  <front>
    <title>Unsigned X.509 Certificates</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-x509-alg-none-08"/>
    <author initials="D." surname="Benjamin" fullname="David Benjamin">
      <organization>Google LLC</organization>
      <address>
        <email>davidben@google.com</email>
      </address>
    </author>
    <date year="2025" month="July" day="07"/>
    <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 use the subject field, as in 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
placerholder 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. 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 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.</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 306?>

<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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
uziv6v/+E6eLIu+J/wHHYBrRezUAAA==

-->

</rfc>
