<?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-johansson-authzen-trust-01" category="info" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="AuthZEN Trust">An AuthZEN profile for trust registries</title>
    <seriesInfo name="Internet-Draft" value="draft-johansson-authzen-trust-01"/>
    <author fullname="Leif Johansson">
      <organization>SIROS Foundation</organization>
      <address>
        <email>leifj@siros.org</email>
      </address>
    </author>
    <date year="2025" month="December" day="08"/>
    <area>SEC</area>
    <keyword>authzen</keyword>
    <keyword>trust registries</keyword>
    <abstract>
      <?line 74?>

<t>Trust registries come in many forms; ETSI trust status lists, OpenID Federation, ledgers. This document describes a simple protocol in the form of a profile of AuthZen that provides a local interface to one or more trust registries. The protocol is mant to be used as a local abstraction layer for any application that needs to evaluate trust.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://leifj.github.io/draft-johansson-authzen-trust"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-johansson-authzen-trust/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/leifj/draft-johansson-authzen-trust"/>.</t>
    </note>
  </front>
  <middle>
    <?line 78?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Technical trust in systems using asymmetric cryptography often involves binding a name to a public key. One such example is, given an X.509 certificate (as a representative of a public key and name), determining its validity relative to a set of trust anchors by means of PKIX path construction and path validation. In this example the trust registry is the set of trust anchors together with the rules for path validation and construction set down in <xref target="RFC5280"/>.</t>
      <t>The proliferation of distributed identity systems have led to the development of a multitude of trust registries each with their own APIs for querying the registry and rules for evaluating trust. Application developers are often faced with the choice of choosing one of these trust registries which leads to interoperability problems. It is often common for an service to register with multiple trust registries in order to reach all intended audiences.</t>
      <t>This document describes an API for trust evaluation that is intended to fill a role similar to the stub resolver in the DNS architecture. The API is defined as a profile of <xref target="AUTHZEN"/>. AuthZen is a proposed standard for communicating between an authorization policy enforcement point (PEP) and a policy decision point (PDP).</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
      <?line -18?>

<t>This specification uses the terms "PDP" and "PEP" defined by <xref target="NIST.SP.800-162"/> and <xref target="XACML"/>. A trust registry refers to any service that provides a binding (or mapping) between public keys and names. This is referred to as "name to key" or name-to-key binding.</t>
    </section>
    <section anchor="endpoints">
      <name>Endpoints</name>
      <t>Implementations of this specification <bcp14>MUST</bcp14> provide the <tt>/evaluation</tt> endpoint and <bcp14>SHOULD</bcp14> also provide the <tt>/evaluations</tt> and discovery endpoints. The <tt>/search</tt> endpoint <bcp14>MAY</bcp14> be provided but providing this endpoint may provide significant challenges for this profile and clients <bcp14>MUST NOT</bcp14> assume that it is present.</t>
    </section>
    <section anchor="authorization-request">
      <name>Authorization Request</name>
      <t>This profile implements the following semantic: The client (PEP) requests that the server (PDP) authorizes the binding between the name specified by the Subject with the public key specified by the Resource. Optionally the Action is used to constrain the authorization to a specific role that the entity that the public key is bound to must have for the authorization to be approved. The PDP may also attempt to <em>resolve</em> the name into metadata that provides additional information about the name-to-key binding.</t>
      <section anchor="subject">
        <name>Subject</name>
        <t>Subject is used to represent the name part of the name-to-key binding.</t>
        <t>The <tt>subject</tt> datafield <bcp14>MUST</bcp14> be present in requests and <bcp14>MUST</bcp14> contain the following elements:</t>
        <ul spacing="normal">
          <li>
            <t><tt>id</tt> <bcp14>MUST</bcp14> be the name bound to the public key to be validated or resolved</t>
          </li>
          <li>
            <t><tt>type</tt> <bcp14>MUST</bcp14> be the constant string <tt>"key"</tt></t>
          </li>
        </ul>
      </section>
      <section anchor="resource">
        <name>Resource</name>
        <t>The <tt>resource</tt> datafield <bcp14>MUST</bcp14> be present in requests and <bcp14>MUST</bcp14> contain the following elements:</t>
        <ul spacing="normal">
          <li>
            <t><tt>id</tt> <bcp14>MUST</bcp14> be the name bound to the public key to be validated or resolved. Furthermore, the value of the <tt>resource.id</tt> element <bcp14>MUST</bcp14> be the same string as in the <tt>subject.id</tt> element.</t>
          </li>
          <li>
            <t><tt>type</tt> <bcp14>MAY</bcp14> be present and if present <bcp14>MUST</bcp14> be one of "jwk" or "x5c".</t>
          </li>
          <li>
            <t><tt>key</tt> If present, <bcp14>MUST</bcp14> be the public key in a format that depends on the <tt>type</tt>. If <tt>type</tt> is absent then <tt>key</tt> <bcp14>MUST NOT</bcp14> be present.</t>
          </li>
        </ul>
        <t>If <tt>type</tt>is present then,</t>
        <ul spacing="normal">
          <li>
            <t>If <tt>type</tt> is <tt>"jwk"</tt> then <tt>key</tt> <bcp14>MUST</bcp14> contain a JWK (<xref target="RFC7517"/>) format key.</t>
          </li>
          <li>
            <t>If <tt>type</tt> is <tt>"x5c"</tt> then <tt>key</tt> <bcp14>MUST</bcp14> contain an array of base64 encoded X.509 certificates formatted according to section 4.7 of <xref target="RFC7517"/>.</t>
          </li>
        </ul>
        <t>Some trust registries support unambiguous name-to-key discovery. For such trust registries <tt>key</tt> and <tt>type</tt> <bcp14>MAY</bcp14> be elided from the Resource as described above.</t>
        <t>When <tt>type</tt> and <tt>key</tt> is present however, a PDP implementing this specification <bcp14>MUST</bcp14> validate that the key is bound to <tt>subject.id</tt> even if <tt>subject.id</tt> is a name bound to a trust registry that supports unambiguous name-to-key discovery.</t>
        <t>The PDP <bcp14>MAY</bcp14> include additional <em>metadata</em> associated with <tt>subject.id</tt> in the result. The method by which this is done is an implementation detail but for instance when the <tt>subject.id</tt> is a "DID" then the resolution <bcp14>MAY</bcp14> be done by the lookup process of a supported DID method.  It is <bcp14>RECOMMENDED</bcp14> that PDPs that support such trust registries return the appropriate metadata in the response.</t>
        <t>Other specifications may define additional key formats in the future.</t>
      </section>
      <section anchor="action">
        <name>Action</name>
        <t>The <tt>action</tt> datafield <bcp14>MAY</bcp14> be present in requests and <bcp14>SHOULD</bcp14> if present be used to represent the role associated with the name-to-key binding. This is used to distinguish different uses of the same name-to-key binding. For instance the <tt>action</tt> can be used to request authorization that a X.509 certificate is allowed to act as a TLS server endpoint or as a digital credential issuer.</t>
        <t>If the <tt>action</tt> is present then it <bcp14>MUST</bcp14> contain at least the <tt>name</tt> parameter which <bcp14>MUST</bcp14> contain a string that represents the role. The interpretation of the role depends on the deployment.</t>
      </section>
      <section anchor="context">
        <name>Context</name>
        <t>The <tt>context</tt> datafield <bcp14>MAY</bcp14> be present in requests but <bcp14>MUST NOT</bcp14> contain information that is critical for the correct processing of the request.</t>
      </section>
    </section>
    <section anchor="authorization-response">
      <name>Authorization Response</name>
      <t>The Authorization Response <bcp14>MAY</bcp14> return metadata associated with <tt>subject.id</tt> in the response using the <tt>trust_metadata</tt> field. When the request <tt>type</tt> is absent then the <tt>trust_metadata</tt> field <bcp14>SHOULD</bcp14> be present.</t>
    </section>
    <section anchor="examples-non-normative">
      <name>Examples (non-normative)</name>
      <t>The following example is a query to check if a provided certificate chain is bound to the name "did:foo:bla" and is allowed act as a EUDI wallet provider.</t>
      <artwork><![CDATA[
{
  "type": "authzen",
  "request": {
      "subject": {
        "type": "key",
        "id": "did:foo:bla"
    },
    "resource": {
      "type": "x5c",
      "id": "did:foo:bla",
      "key": ["... x5c data ..."]
    },
    "action": {
      "name": "http://ec.europa.eu/NS/wallet-provider",
    }
  }
}
]]></artwork>
      <t>The following example is a query to check if a provided certificate chain is bound to "www.example.com" and is allowed to act as a TLS server.</t>
      <artwork><![CDATA[
{
  "type": "authzen",
  "request": {
      "subject": {
        "type": "key",
        "id": "www.example.com"
    },
    "resource": {
      "type": "x5c",
      "id": "www.example.com",
      "key": ["... x5c data ..."],
    },
    "action": {
      "name": "TODO:oid:tls-server",
    }
  }
}
]]></artwork>
      <t>The following is an example response with no additional context:</t>
      <artwork><![CDATA[
{
  "decision": true
}
]]></artwork>
      <t>The following is an example response with trust_metadata that contains an (abbreviated) DID document.</t>
      <artwork><![CDATA[
{
  "decision": true,
  "context": {
    trust_metadata: {
      {
        "@context": [
          "https://www.w3.org/ns/did/v1",
          "https://w3id.org/security/suites/ed25519-2020/v1"
        ],
        "id": "did:example:123",
        ....
    }
  }
}
]]></artwork>
      <t>The following is an hypothetical response with error messages:</t>
      <artwork><![CDATA[
{
  "decision": false,
  "context": {
    "reason": {
      "403": "Unknown service - contact helpdesk@registry.example.com for support using the following identifier: #ID4711"
    }
  }
}
]]></artwork>
    </section>
    <section anchor="authzen-trust-as-a-did-resolver">
      <name>AuthZen Trust as a DID resolver</name>
      <t>As should be obvious from the specification above, a DID resolver as specified in section 7 of <xref target="DID"/> share many properties with this specification. Notable differences is that error handling is slightly different and content negotiation is handled by the PDP which means that DID resolution options (section 7.1.1 of <xref target="DID"/>) isn't needed in this case.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The protocol described in this specification is meant to be used by applications that share a common security domain and it may be perfectly reasonable for deployments of this specification to be deployed without authentication on "localhost" or in situations where security requirements for the protocol is provided elsewhere in the stack. In general implementations of this specification <bcp14>MAY</bcp14> implement <xref target="RFC6749"/> authentication for the purpose of authenticating the client (PDP) to the server (PEP) and <bcp14>SHOULD</bcp14> provide a way for the PDP to be authenticated to the client.</t>
      <t>In addition to the above the security considerations for authentication for AuthZen applies in equal measure to this profile.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="AUTHZEN" target="https://openid.github.io/authzen/">
          <front>
            <title>OpenID AuthZEN Authorization API</title>
            <author initials="O." surname="Gazitt" fullname="Omri Gazitt">
              <organization>Aserto</organization>
            </author>
            <author initials="D." surname="Brossard" fullname="David Brossard">
              <organization>Axiomatics</organization>
            </author>
            <author initials="A." surname="Tulshibagwale" fullname="Atul Tulshibagwale">
              <organization>SGNL</organization>
            </author>
            <date year="2024" month="July"/>
          </front>
        </reference>
        <reference anchor="RFC7517">
          <front>
            <title>JSON Web Key (JWK)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. This specification also defines a JWK Set JSON data structure that represents a set of JWKs. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and IANA registries established by that specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7517"/>
          <seriesInfo name="DOI" value="10.17487/RFC7517"/>
        </reference>
        <reference anchor="RFC6749">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="DID" target="https://www.w3.org/TR/did-1.0/">
          <front>
            <title>Decentralized Identifiers (DIDs) v1.0</title>
            <author>
              <organization/>
            </author>
            <date year="2022"/>
          </front>
        </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="RFC9525">
          <front>
            <title>Service Identity in TLS</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <author fullname="R. Salz" initials="R." surname="Salz"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>Many application technologies enable secure communication between two entities by means of Transport Layer Security (TLS) with Internet Public Key Infrastructure using X.509 (PKIX) certificates. This document specifies procedures for representing and verifying the identity of application services in such interactions.</t>
              <t>This document obsoletes RFC 6125.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9525"/>
          <seriesInfo name="DOI" value="10.17487/RFC9525"/>
        </reference>
        <reference anchor="NIST.SP.800-162" target="https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-162.pdf">
          <front>
            <title>Guide to Attribute Based Access Control (ABAC) Definition and Considerations</title>
            <author fullname="Vincent C. Hu" surname="Hu">
              <organization>Information Technology Laboratory</organization>
            </author>
            <author fullname="David Ferraiolo" surname="Ferraiolo">
              <organization>Information Technology Laboratory</organization>
            </author>
            <author fullname="Rick Kuhn" surname="Kuhn">
              <organization>Information Technology Laboratory</organization>
            </author>
            <author fullname="Adam Schnitzer" surname="Schnitzer">
              <organization>Information Technology Laboratory</organization>
            </author>
            <author fullname="Kenneth Sandlin" surname="Sandlin">
              <organization>Information Technology Laboratory</organization>
            </author>
            <author fullname="Robert Miller" surname="Miller">
              <organization>Information Technology Laboratory</organization>
            </author>
            <author fullname="Karen Scarfone" surname="Scarfone">
              <organization>Information Technology Laboratory</organization>
            </author>
            <author>
              <organization abbrev="NIST">National Institute of Standards and Technology</organization>
              <address>
                <postal>
                  <country>US</country>
                  <city>Gaithersburg</city>
                </postal>
              </address>
            </author>
            <date month="January" year="2014"/>
          </front>
          <seriesInfo name="NIST Special Publications (General)" value="800-162"/>
          <seriesInfo name="DOI" value="10.6028/NIST.SP.800-162"/>
        </reference>
        <reference anchor="XACML" target="https://www.oasis-open.org/committees/xacml/repository/cs-xacml-specification-1.1.pdf">
          <front>
            <title>eXtensible Access Control Markup Language (XACML) Version 1.1</title>
            <author initials="S." surname="Godik" fullname="Simon Godik" role="editor">
              <organization>Overxeer</organization>
            </author>
            <author initials="T. M." surname="(Ed.)" fullname="Tim Moses (Ed.)" role="editor">
              <organization>Entrust</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 267?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
