One document matched: draft-ietf-jose-jwk-thumbprint-00.xml
<?xml version="1.0" encoding="US-ASCII"?>
<!DOCTYPE rfc SYSTEM "rfc2629.dtd">
<?xml-stylesheet type='text/xsl' href='http://xml.resource.org/authoring/rfc2629.xslt' ?>
<?rfc toc="yes"?>
<?rfc tocompact="yes"?>
<?rfc tocdepth="4"?>
<?rfc tocindent="yes"?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<rfc category="std" ipr="trust200902" docName="draft-ietf-jose-jwk-thumbprint-00">
<front>
<title>JSON Web Key (JWK) Thumbprint</title>
<author fullname="Michael B. Jones" initials="M.B." surname="Jones">
<organization>Microsoft</organization>
<address>
<email>mbj@microsoft.com</email>
<uri>http://self-issued.info/</uri>
</address>
</author>
<date day="10" month="November" year="2014" />
<area>Security</area>
<workgroup>JOSE Working Group</workgroup>
<keyword>RFC</keyword>
<keyword>Request for Comments</keyword>
<keyword>I-D</keyword>
<keyword>Internet-Draft</keyword>
<keyword>JavaScript Object Notation</keyword>
<keyword>JSON</keyword>
<keyword>JSON Web Key</keyword>
<keyword>JWK</keyword>
<keyword>Thumbprint</keyword>
<keyword>Fingerprint</keyword>
<abstract>
<t>
This specification defines a means of computing a thumbprint value (a.k.a. digest)
of JSON Web Key (JWK) objects analogous to the
<spanx style="verb">x5t</spanx> (X.509 Certificate SHA-1 Thumbprint)
value defined for X.509 certificate objects.
This specification also registers the new
JSON Web Signature (JWS) and
JSON Web Encryption (JWE)
Header Parameters and
the new JSON Web Key (JWK) member name
<spanx style="verb">jkt</spanx> (JWK SHA-256 Thumbprint)
for holding these values.
</t>
</abstract>
</front>
<middle>
<section title="Introduction" anchor="Introduction">
<t>
This specification defines a means of computing a thumbprint value (a.k.a. digest)
of JSON Web Key (JWK) <xref target="JWK"/> objects analogous to the
<spanx style="verb">x5t</spanx> (X.509 Certificate SHA-1 Thumbprint)
value defined for X.509 certificate objects.
This specification also registers the new
JSON Web Signature (JWS) <xref target="JWS"/> and
JSON Web Encryption (JWE) <xref target="JWE"/>
Header Parameters and
the new JSON Web Key (JWK) <xref target="JWK"/> member name
<spanx style="verb">jkt</spanx> (JWK SHA-256 Thumbprint)
for holding these values.
</t>
<section title='Notational Conventions' anchor="NotationalConventions">
<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
Key words for use in RFCs to Indicate Requirement Levels <xref target='RFC2119' />.
</t>
</section>
</section>
<section title="Terminology" anchor="Terminology">
<t>
This specification uses the same terminology as the
JSON Web Key (JWK) <xref target="JWK"/>,
JSON Web Signature (JWS) <xref target="JWS"/>,
JSON Web Encryption (JWE) <xref target="JWE"/>, and
JSON Web Algorithms (JWA) <xref target="JWA"/>
specifications.
</t>
<t>
This term is defined by this specification:
</t>
<t>
<list style="hanging">
<t hangText="JWK Thumbprint">
<vspace/>
The digest value for a key that is the subject of this specification.
</t>
</list>
</t>
</section>
<section title="JSON Web Key (JWK) Thumbprint" anchor="jkt">
<t>
This specification defines the thumbprint of a JSON Web Key (JWK) value as being
a function of the REQUIRED members of the key's JWK representation.
Specifically, this function is the SHA-256 hash of
the octets of the UTF-8 representation of
a JSON object <xref target="RFC7159"/>
constructed containing only the REQUIRED members of a JWK representing the key
and with no white space or line breaks before or after any syntactic elements
and with the REQUIRED members
ordered lexicographically by the Unicode code points of the member names.
This JSON object is itself a legal JWK representation of the key value.
The details of this computation are further described in subsequent sections.
</t>
<section title="Example JWK Thumbprint Computation" anchor="Example">
<t>
This section demonstrates the JWK Thumbprint computation for the JWK below
(with long lines broken for display purposes only):
</t>
<figure><artwork><![CDATA[
{
"kty": "RSA",
"n": "0vx7agoebGcQSuuPiLJXZptN9nndrQmbXEps2aiAFbWhM78LhWx4cbbfAAt
VT86zwu1RK7aPFFxuhDR1L6tSoc_BJECPebWKRXjBZCiFV4n3oknjhMstn6
4tZ_2W-5JsGY4Hc5n9yBXArwl93lqt7_RN5w6Cf0h4QyQ5v-65YGjQR0_FD
W2QvzqY368QQMicAtaSqzs8KJZgnYb9c7d0zgdAZHzu6qMQvRL5hajrn1n9
1CbOpbISD08qNLyrdkt-bFTWhAI4vMQFh6WeZu0fM4lFd2NcRwr3XPksINH
aQ-G_xBniIqbw0Ls1jF44-csFCur-kEgU8awapJzKnqDKgw",
"e": "AQAB",
"alg": "RS256",
"kid": "2011-04-29"
}
]]></artwork></figure>
<t>
As defined in
JSON Web Key (JWK) <xref target="JWK"/> and
JSON Web Algorithms (JWA) <xref target="JWA"/>,
the REQUIRED members of an RSA public key are:
</t>
<t>
<?rfc subcompact="yes"?>
<list style="symbols">
<t><spanx style="verb">kty</spanx></t>
<t><spanx style="verb">n</spanx></t>
<t><spanx style="verb">e</spanx></t>
</list>
<?rfc subcompact="no"?>
</t>
<t>
Therefore, these are the members used in the thumbprint computation.
</t>
<t>
Their lexicographic order
(see more about this in <xref target="HashInput"/>) is:
</t>
<t>
<?rfc subcompact="yes"?>
<list style="symbols">
<t><spanx style="verb">e</spanx></t>
<t><spanx style="verb">kty</spanx></t>
<t><spanx style="verb">n</spanx></t>
</list>
<?rfc subcompact="no"?>
</t>
<t>
Therefore the JSON object constructed as an intermediate step
in the computation is as follows
(with long lines broken for display purposes only):
</t>
<figure><artwork><![CDATA[
{"e":"AQAB","kty":"RSA","n":"0vx7agoebGcQSuuPiLJXZptN9nndrQmbXEps2
aiAFbWhM78LhWx4cbbfAAtVT86zwu1RK7aPFFxuhDR1L6tSoc_BJECPebWKRXjBZCi
FV4n3oknjhMstn64tZ_2W-5JsGY4Hc5n9yBXArwl93lqt7_RN5w6Cf0h4QyQ5v-65Y
GjQR0_FDW2QvzqY368QQMicAtaSqzs8KJZgnYb9c7d0zgdAZHzu6qMQvRL5hajrn1n
91CbOpbISD08qNLyrdkt-bFTWhAI4vMQFh6WeZu0fM4lFd2NcRwr3XPksINHaQ-G_x
BniIqbw0Ls1jF44-csFCur-kEgU8awapJzKnqDKgw"}
]]></artwork></figure>
<t>
The octets of the UTF-8 representation of this JSON object are:
</t>
<t>
[123, 34, 101, 34, 58, 34, 65, 81, 65, 66, 34, 44, 34, 107, 116, 121, 34, 58, 34, 82, 83, 65, 34, 44, 34, 110, 34, 58, 34, 48, 118, 120, 55, 97, 103, 111, 101, 98, 71, 99, 81, 83, 117, 117, 80, 105, 76, 74, 88, 90, 112, 116, 78, 57, 110, 110, 100, 114, 81, 109, 98, 88, 69, 112, 115, 50, 97, 105, 65, 70, 98, 87, 104, 77, 55, 56, 76, 104, 87, 120, 52, 99, 98, 98, 102, 65, 65, 116, 86, 84, 56, 54, 122, 119, 117, 49, 82, 75, 55, 97, 80, 70, 70, 120, 117, 104, 68, 82, 49, 76, 54, 116, 83, 111, 99, 95, 66, 74, 69, 67, 80, 101, 98, 87, 75, 82, 88, 106, 66, 90, 67, 105, 70, 86, 52, 110, 51, 111, 107, 110, 106, 104, 77, 115, 116, 110, 54, 52, 116, 90, 95, 50, 87, 45, 53, 74, 115, 71, 89, 52, 72, 99, 53, 110, 57, 121, 66, 88, 65, 114, 119, 108, 57, 51, 108, 113, 116, 55, 95, 82, 78, 53, 119, 54, 67, 102, 48, 104, 52, 81, 121, 81, 53, 118, 45, 54, 53, 89, 71, 106, 81, 82, 48, 95, 70, 68, 87, 50, 81, 118, 122, 113, 89, 51, 54, 56, 81, 81, 77, 105, 99, 65, 116, 97, 83, 113, 122, 115, 56, 75, 74, 90, 103, 110, 89, 98, 57, 99, 55, 100, 48, 122, 103, 100, 65, 90, 72, 122, 117, 54, 113, 77, 81, 118, 82, 76, 53, 104, 97, 106, 114, 110, 49, 110, 57, 49, 67, 98, 79, 112, 98, 73, 83, 68, 48, 56, 113, 78, 76, 121, 114, 100, 107, 116, 45, 98, 70, 84, 87, 104, 65, 73, 52, 118, 77, 81, 70, 104, 54, 87, 101, 90, 117, 48, 102, 77, 52, 108, 70, 100, 50, 78, 99, 82, 119, 114, 51, 88, 80, 107, 115, 73, 78, 72, 97, 81, 45, 71, 95, 120, 66, 110, 105, 73, 113, 98, 119, 48, 76, 115, 49, 106, 70, 52, 52, 45, 99, 115, 70, 67, 117, 114, 45, 107, 69, 103, 85, 56, 97, 119, 97, 112, 74, 122, 75, 110, 113, 68, 75, 103, 119, 34, 125]
</t>
<t>
The JWK Thumbprint value is the SHA-256 hash of these octets, specifically:
</t>
<t>
[55, 54, 203, 177, 120, 124, 184, 48, 156, 119, 238, 140, 55, 5, 197, 225,
111, 251, 158, 133, 151, 21, 144, 31, 30, 76, 89, 177, 17, 130, 245, 123]
</t>
<t>
The base64url encoding of this JWK Thumbprint value
(which would be used in the <spanx style="verb">jkt</spanx> members
registered below) is:
<figure><artwork><![CDATA[
NzbLsXh8uDCcd-6MNwXF4W_7noWXFZAfHkxZsRGC9Xs
]]></artwork></figure>
</t>
</section>
<section title="JWK Members Used in the Thumbprint Computation" anchor="MembersUsed">
<t>
Only the REQUIRED members of a key's representation are used
when computing its JWK Thumbprint value.
As defined in
JSON Web Key (JWK) <xref target="JWK"/> and
JSON Web Algorithms (JWA) <xref target="JWA"/>,
the REQUIRED members of an elliptic curve public key, in lexicographic order, are:
</t>
<t>
<?rfc subcompact="yes"?>
<list style="symbols">
<t><spanx style="verb">crv</spanx></t>
<t><spanx style="verb">kty</spanx></t>
<t><spanx style="verb">x</spanx></t>
<t><spanx style="verb">y</spanx></t>
</list>
<?rfc subcompact="no"?>
</t>
<t>
the REQUIRED members of an RSA public key, in lexicographic order, are:
</t>
<t>
<?rfc subcompact="yes"?>
<list style="symbols">
<t><spanx style="verb">e</spanx></t>
<t><spanx style="verb">kty</spanx></t>
<t><spanx style="verb">n</spanx></t>
</list>
<?rfc subcompact="no"?>
</t>
<t>
and the REQUIRED members of a symmetric key, in lexicographic order, are:
</t>
<t>
<?rfc subcompact="yes"?>
<list style="symbols">
<t><spanx style="verb">k</spanx></t>
<t><spanx style="verb">kty</spanx></t>
</list>
<?rfc subcompact="no"?>
</t>
<t>
As other key type values are defined, the specifications defining them
should be similarly consulted to determine which members,
in addition to <spanx style="verb">kty</spanx>, are REQUIRED.
</t>
<section title="JWK Thumbprint of a Private Key" anchor="Private">
<t>
The JWK Thumbprint of a private key is computed as
the JWK Thumbprint of the corresponding public key.
This has the intentional benefit that the same JWK Thumbprint value
can be computed both by parties using either the public or private key.
The JWK Thumbprint can then be used to refer to both keys of the key pair.
Application context can be used to determine whether
the public or the private key is the one being referred to
by the JWK Thumbprint.
</t>
</section>
<section title="Why Not Include Optional Members?" anchor="WhyNotOptional">
<t>
OPTIONAL members of JWKs are intentionally not included in
the JWK Thumbprint computation so that their absence or presence
in the JWK doesn't alter the resulting value.
The JWK Thumbprint value is a digest of the key value itself --
not of additional data that may also accompany the key.
</t>
</section>
</section>
<section title="Order and Representation of Members in Hash Input" anchor="HashInput">
<t>
The REQUIRED members in the input to the SHA-256 hash function are
ordered lexicographically by the Unicode code points of the member names.
</t>
<t>
Characters in member names and member values MUST be represented
without being escaped.
This means that thumbprints of JWK values that require such characters
are not defined by this specification.
(This is not expected to limit the applicability of this specification,
in practice, as the REQUIRED members of JWK representations
are not expected to use any of these characters.)
The characters specified as requiring escaping
by Section 7 of <xref target="RFC7159"/>
are quotation mark, reverse solidus (a.k.a. backslash),
and the control characters U+0000 through U+001F.
</t>
<t>
If the JWK key type uses members whose values are themselves JSON objects
(as of the time of this writing, none are defined that do),
the members of those objects must likewise be lexicographically ordered.
</t>
<t>
If the JWK key type uses members whose values are JSON numbers
(as of the time of this writing, none are defined that do),
if the numbers are integers, they MUST be represented
as a JSON number as defined in Section 6 of <xref target="RFC7159"/>
without including a fraction part or exponent part.
For instance, the value <spanx style="verb">1.024e3</spanx> MUST be
represented as <spanx style="verb">1024</spanx>.
This means that thumbprints of JWK values that use numbers that are not integers
are not defined by this specification.
</t>
<t>
See <xref target="PracticalConsiderations"/> for a discussion of
further practical considerations pertaining to the
representation of the hash input.
</t>
</section>
<section title="JWK Thumbprints of Any Keys" anchor="AnyKeys">
<t>
Note that a key need not be in JWK format to create
a JWK Thumbprint of it. The only prerequisites are that
the JWK representation of the key be defined
and the party creating the JWK Thumbprint is in possession
of the necessary key material.
These are sufficient to create the hash input,
as described in <xref target="HashInput"/>.
</t>
</section>
</section>
<section title='"jkt" Member Definitions' anchor="jktDef">
<t>
This section defines <spanx style="verb">jkt</spanx> (JWK SHA-256 Thumbprint)
members used for holding base64url encoded JWK Thumbprint values
in JWK, JWS, and JWE objects.
</t>
<section title='"jkt" (JWK SHA-256 Thumbprint) JWS Header Parameter'
anchor="jktJWSDef">
<t>
The <spanx style="verb">jkt</spanx> (JWK SHA-256 Thumbprint)
JWS Header Parameter is a base64url encoded
JWK Thumbprint (a.k.a. digest) of the public key
that corresponds to the key
used to digitally sign the JWS.
Use of this JWS Header Parameter is OPTIONAL.
</t>
</section>
<section title='"jkt" (JWK SHA-256 Thumbprint) JWE Header Parameter'
anchor="jktJWEDef">
<t>
This parameter has the same meaning, syntax, and processing rules as the
<spanx style="verb">jkt</spanx> JWS Header Parameter defined in
<xref target="jktJWSDef"/>, except that
the JWK Thumbprint references
the public key to which the JWE was encrypted;
this can be used to determine the private key needed to decrypt the JWE.
</t>
</section>
<section title='"jkt" (JWK SHA-256 Thumbprint) JWK Parameter'
anchor="jktJWKDef">
<t>
The <spanx style="verb">jkt</spanx> (JWK SHA-256 Thumbprint)
JWK parameter is a base64url encoded
JWK Thumbprint (a.k.a. digest) of the JWK.
If present, the JWK Thumbprint value represented MUST have been computed
from the other members of the JWK as described in <xref target="jkt"/>.
Use of this member is OPTIONAL.
</t>
</section>
<section title="Possible Future Alternative Thumbprint Computations"
anchor="Alternatives">
<t>
If, in the future, JWK Thumbprints need to be
computed using hash functions other than SHA-256, it is
suggested that additional related JWK, JWS, and JWE parameters be
defined for that purpose. For example, it is suggested
that a new <spanx style="verb">jkt#S3-256</spanx>
(X.509 Certificate Thumbprint using SHA-3-256) JWK parameter
could be defined by registering it in
the IANA JSON Web Key Parameters registry and
the IANA JSON Web Signature and Encryption Header Parameters registry.
</t>
</section>
</section>
<section title="Practical JSON and Unicode Considerations"
anchor="PracticalConsiderations">
<t>
Implementations will almost certainly use functionality
provided by the platform's JSON support,
such as the JavaScript JSON.parse() JSON.stringify() functions,
when parsing the JWK and emitting the JSON object used as
the SHA-256 hash input.
As a practical consideration,
future JWK member names should be avoided for which different
platforms or libraries might emit different representations.
As of the time of this writing, currently all defined JWK member names
use only printable ASCII characters, which should not exhibit this problem.
</t>
<t>
In particular, while the operation of
lexicographically ordering member names by their Unicode code points
is well defined, different platform sort functions may produce different results
for non-ASCII characters, in ways that may not be obvious to developers.
If writers of future specifications defining new
JWK Key Type values choose to restrict themselves to ASCII member names
(which are for machine and not human consumption anyway),
some future interoperability problems might be avoided.
</t>
<t>
Use of escaped characters in the input JWK representation should be avoided.
</t>
<t>
While there is a natural representation to use for numeric values
that are integers, this specification doesn't attempt to define
a standard representation for numbers that are not integers or
that contain an exponent component.
This is not expected to be a problem in practice,
as the REQUIRED members of JWK representations
are not expected to use numbers that are not integers.
</t>
<t>
Use of number representations containing fraction or exponent parts
in the input JWK representation should be avoided.
</t>
<t>
All of these practical considerations are really an instance of Jon Postel's principle:
"Be liberal in what you accept, and conservative in what you send."
</t>
</section>
<section title="IANA Considerations" anchor="IANA">
<section title="JWS and JWE Header Parameter Registration" anchor="HdrReg">
<t>
This specification registers the <spanx style="verb">jkt</spanx>
Header Parameters defined in
Sections <xref target="jktJWSDef" format="counter"/> and
<xref target="jktJWEDef" format="counter"/> in
the IANA JSON Web Signature and Encryption Header Parameters registry
defined in <xref target="JWS" />.
</t>
<section title="Registry Contents" anchor="HdrContents">
<t> <?rfc subcompact="yes"?>
<list style='symbols'>
<t>
Header Parameter Name: <spanx style="verb">jkt</spanx>
</t>
<t>
Header Parameter Description: JWS JWK Thumbprint
</t>
<t>
Header Parameter Usage Location(s): JWS
</t>
<t>
Change Controller: IETF
</t>
<t>
Specification Document(s): <xref target="jktJWSDef"/> of [[ this document ]]
</t>
</list>
</t>
<t>
<list style='symbols'>
<t>
Header Parameter Name: <spanx style="verb">jkt</spanx>
</t>
<t>
Header Parameter Description: JWE JWK Thumbprint
</t>
<t>
Header Parameter Usage Location(s): JWE
</t>
<t>
Change Controller: IETF
</t>
<t>
Specification Document(s): <xref target="jktJWEDef"/> of [[ this document ]]
</t>
</list>
</t>
</section>
<?rfc subcompact="no"?>
</section>
<section title="JSON Web Key Parameters Registration" anchor="KeyRegistration">
<t>
This specification registers the <spanx style="verb">jkt</spanx>
JWK member defined in <xref target="jktJWKDef"/> in
the IANA JSON Web Key Parameters registry
defined in <xref target="JWK"/>.
</t>
<section title="Registry Contents" anchor="KeyContents">
<t> <?rfc subcompact="yes"?>
<list style='symbols'>
<t>
Parameter Name: <spanx style="verb">jkt</spanx>
</t>
<t>
Parameter Description: JWK Thumbprint
</t>
<t>
Used with "kty" Value(s): *
</t>
<t>
Parameter Information Class: Public
</t>
<t>
Change Controller: IESG
</t>
<t>
Specification Document(s): <xref target="jktJWKDef" /> of [[ this document ]]
</t>
</list>
</t>
</section>
<?rfc subcompact="no"?>
</section>
</section>
<section title="Security Considerations" anchor="Security">
<t>
The JSON Security Considerations and Unicode security considerations described in
Sections 10.2 and 10.3 of JSON Web Signature (JWS) <xref target="JWS"/>
also apply to this specification.
</t>
<t>
Also, as described in <xref target="PracticalConsiderations"/>,
some implementations may produce incorrect results if esoteric or escaped
characters are used in the member names.
The security implications of this appear to be limited for JWK Thumbprints
of public keys, since while it may result in implementations failing
to identify the intended key, it should not leak information,
since the information in a public key is already public in nature, by definition.
</t>
</section>
</middle>
<back>
<references title="Normative References">
<?rfc include='http://xml.resource.org/public/rfc/bibxml/reference.RFC.2119.xml' ?>
<?rfc include='http://xml.resource.org/public/rfc/bibxml/reference.RFC.7159.xml' ?>
<reference anchor="JWK">
<front>
<title>JSON Web Key (JWK)</title>
<author fullname="Michael B. Jones" initials="M.B." surname="Jones">
<organization>Microsoft</organization>
<address>
<email>mbj@microsoft.com</email>
<uri>http://self-issued.info/</uri>
</address>
</author>
<date day="24" month="October" year="2014"/>
</front>
<seriesInfo value="draft-ietf-jose-json-web-key" name="Internet-Draft"/>
<format target="http://tools.ietf.org/html/draft-ietf-jose-json-web-key" type="HTML" />
</reference>
<reference anchor="JWS">
<front>
<title>JSON Web Signature (JWS)</title>
<author fullname="Michael B. Jones" initials="M.B." surname="Jones">
<organization>Microsoft</organization>
<address>
<email>mbj@microsoft.com</email>
<uri>http://self-issued.info/</uri>
</address>
</author>
<author fullname="John Bradley" initials="J." surname="Bradley">
<organization abbrev="Ping Identity">Ping Identity</organization>
<address>
<email>ve7jtb@ve7jtb.com</email>
</address>
</author>
<author fullname="Nat Sakimura" initials="N." surname="Sakimura">
<organization abbrev="NRI">Nomura Research Institute</organization>
<address>
<email>n-sakimura@nri.co.jp</email>
</address>
</author>
<date day="24" month="October" year="2014"/>
</front>
<seriesInfo value="draft-ietf-jose-json-web-signature" name="Internet-Draft"/>
<format target="http://tools.ietf.org/html/draft-ietf-jose-json-web-signature" type="HTML" />
</reference>
<reference anchor="JWE">
<front>
<title>JSON Web Encryption (JWE)</title>
<author fullname="Michael B. Jones" initials="M.B." surname="Jones">
<organization>Microsoft</organization>
<address>
<email>mbj@microsoft.com</email>
<uri>http://self-issued.info/</uri>
</address>
</author>
<author fullname="Joe Hildebrand" initials="J." surname="Hildebrand">
<organization abbrev="Cisco">Cisco Systems, Inc.</organization>
<address>
<email>jhildebr@cisco.com</email>
</address>
</author>
<date day="24" month="October" year="2014"/>
</front>
<seriesInfo value="draft-ietf-jose-json-web-encryption" name="Internet-Draft"/>
<format target="http://tools.ietf.org/html/draft-ietf-jose-json-web-encryption" type="HTML" />
</reference>
<reference anchor="JWA">
<front>
<title>JSON Web Algorithms (JWA)</title>
<author fullname="Michael B. Jones" initials="M.B." surname="Jones">
<organization>Microsoft</organization>
<address>
<email>mbj@microsoft.com</email>
<uri>http://self-issued.info/</uri>
</address>
</author>
<date day="24" month="October" year="2014"/>
</front>
<seriesInfo value="draft-ietf-jose-json-web-algorithms" name="Internet-Draft"/>
<format target="http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms" type="HTML" />
</reference>
</references>
<section title='Acknowledgements' anchor='Acknowledgements'>
<t>
James Manger, Nat Sakimura, and John Bradley participated in discussions
that led to the creation of this specification.
</t>
</section>
<section title='Document History' anchor="History">
<t>
[[ to be removed by the RFC editor before publication as an RFC ]]
</t>
<t>
-00
<list style='symbols'>
<t>
Created draft-ietf-jose-jwk-thumbprint-00 from
draft-jones-jose-jwk-thumbprint-01 with no normative changes.
</t>
</list>
</t>
</section>
</back>
</rfc>
| PAFTECH AB 2003-2026 | 2026-04-24 06:19:59 |