<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type='text/xsl' href='xep.xsl'?>
<xep xmlns="">
<header>
  <title>Dialback Key Generation and Validation</title>
  <abstract>This document provides a recommended method for generating and validating the keys used in the XMPP server dialback protocol.</abstract>
  
<legal>
<copyright>This XMPP Extension Protocol is copyright © 1999 – 2024 by the <link url="https://xmpp.org/">XMPP Standards Foundation</link> (XSF).</copyright>
<permissions>Permission is hereby granted, free of charge, to any person obtaining a copy of this specification (the "Specification"), to make use of the Specification without restriction, including without limitation the rights to implement the Specification in a software program, deploy the Specification in a network service, and copy, modify, merge, publish, translate, distribute, sublicense, or sell copies of the Specification, and to permit persons to whom the Specification is furnished to do so, subject to the condition that the foregoing copyright notice and this permission notice shall be included in all copies or substantial portions of the Specification. Unless separate permission is granted, modified works that are redistributed shall not contain misleading information regarding the authors, title, number, or publisher of the Specification, and shall not claim endorsement of the modified works by the authors, any organization or project to which the authors belong, or the XMPP Standards Foundation.</permissions>
<warranty>## NOTE WELL: This Specification is provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. ##</warranty>
<liability>In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall the XMPP Standards Foundation or any author of this Specification be liable for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising from, out of, or in connection with the Specification or the implementation, deployment, or other use of the Specification (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if the XMPP Standards Foundation or such author has been advised of the possibility of such damages.</liability>
<conformance>This XMPP Extension Protocol has been contributed in full conformance with the XSF's Intellectual Property Rights Policy (a copy of which can be found at &lt;<link url="https://xmpp.org/about/xsf/ipr-policy">https://xmpp.org/about/xsf/ipr-policy</link>&gt; or obtained by writing to XMPP Standards Foundation, P.O. Box 787, Parker, CO 80134 USA).</conformance>
</legal>
  <number>0185</number>
  <status>Active</status>
  <type>Informational</type>
  <sig>Standards</sig>
  <approver>Council</approver>
  <dependencies>
    <spec>XMPP Core</spec>
  </dependencies>
  <supersedes/>
  <supersededby/>
  <shortname>N/A</shortname>
  
  <author>
    <firstname>Philipp</firstname>
    <surname>Hancke</surname>
    <email>fippo@andyet.com</email>
    <jid>fippo@goodadvice.pages.de</jid>
  </author>

  
  <author>
    <firstname>Peter</firstname>
    <surname>Saint-Andre</surname>
    <email>stpeter@stpeter.im</email>
    <jid>stpeter@jabber.org</jid>
    <uri>https://stpeter.im/</uri>
  </author>

  <revision>
    <version>1.0</version>
    <date>2007-02-15</date>
    <initials>psa</initials>
    <remark><p>Per a vote of the XMPP Council, advanced specification to Active.</p></remark>
  </revision>
  <revision>
    <version>0.4</version>
    <date>2007-02-09</date>
    <initials>psa/ph</initials>
    <remark><p>Modified order of explanation to ease understanding; removed discussion of alternate algorithms, which is better left to a more in-depth security analysis.</p>
    </remark>
  </revision>
  <revision>
    <version>0.3</version>
    <date>2006-11-01</date>
    <initials>ph</initials>
    <remark><p>Recommended hashing the secret to satisfy length requirement; hostnames and Stream ID should be separated by spaces to avoid ambiguity; updated example to match revisions to RFC 3920.</p>
    </remark>
  </revision>
  <revision>
    <version>0.2</version>
    <date>2006-05-10</date>
    <initials>ph</initials>
    <remark>
      <p>Clarified and corrected roles of originating and receiving servers; updated recommendation and main example to use HMAC-SHA256 for key generation.</p>
    </remark>
  </revision>
  <revision>
    <version>0.1</version>
    <date>2006-04-11</date>
    <initials>psa</initials>
    <remark><p>Initial version.</p></remark>
  </revision>
  <revision>
    <version>0.0.1</version>
    <date>2006-03-30</date>
    <initials>ph</initials>
    <remark><p>First draft.</p></remark>
  </revision>
</header>
<section1 topic="Introduction" anchor="intro">
  <p><span class="ref"><link url="http://tools.ietf.org/html/rfc3920">RFC 3920</link></span> <note>RFC 3920: Extensible Messaging and Presence Protocol (XMPP): Core &lt;<link url="http://tools.ietf.org/html/rfc3920">http://tools.ietf.org/html/rfc3920</link>&gt;.</note> does not specify in detail a recommended algorithm for generating the keys used in the server dialback protocol. This document provides such a recommendation as an aid to implementors of XMPP servers. This document is not meant to supersede any text in <span class="ref"><link url="http://tools.ietf.org/html/rfc3920">RFC 3920</link></span> <note>RFC 3920: Extensible Messaging and Presence Protocol (XMPP): Core &lt;<link url="http://tools.ietf.org/html/rfc3920">http://tools.ietf.org/html/rfc3920</link>&gt;.</note>; however, the recommendations in this document have been incorporated into <span class="ref"><link url="https://xmpp.org/extensions/xep-0220.html">Server Dialback (XEP-0220)</link></span> <note>XEP-0220: Server Dialback &lt;<link url="https://xmpp.org/extensions/xep-0220.html">https://xmpp.org/extensions/xep-0220.html</link>&gt;.</note>.</p>
</section1>
<section1 topic="Recommended Algorithm" anchor="algorithm">
  <p>The process for generating and validating a dialback key SHOULD take into account the following four inputs:</p>
  <ul>
    <li>the hostname of the Originating Server</li>
    <li>the hostname of the Receiving Server</li>
    <li>the Stream ID generated by the Receiving Server</li>
    <li>a secret known by the Authoritative Server's network</li>
  </ul>
  <p>In particular, the following algorithm is RECOMMENDED:</p>
  <code>
key = HMAC-SHA256
      (
        SHA256(Secret),
        {
          Receiving Server, ' ',
          Originating Server, ' ',
          Stream ID
        }
      )
  </code>
  <p>Note the following:</p>
  <ol>
    <li>The resulting dialback key is a Keyed-Hash Message Authentication Code (see <span class="ref"><link url="http://csrc.nist.gov/publications/fips/fips198/fips-198a.pdf">HMAC</link></span> <note>The Keyed-Hash Message Authentication Code (HMAC): Federal Information Processing Standards Publication 198 &lt;<link url="http://csrc.nist.gov/publications/fips/fips198/fips-198a.pdf">http://csrc.nist.gov/publications/fips/fips198/fips-198a.pdf</link>&gt;.</note>) generated using the SHA256 hashing algorithm (see <span class="ref"><link url="http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf">SHA</link></span> <note>Secure Hash Standard: Federal Information Processing Standards Publication 180-2  &lt;<link url="http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf">http://csrc.nist.gov/publications/fips/fips180-2/fips186-2withchangenotice.pdf</link>&gt;.</note>).</li>
    <li>The Secret is used as a "key" within the HMAC generation process; because <cite>HMAC</cite> recommends that the length of the HMAC key should be at least half the size of the hash function output, the Secret SHOULD be hashed via SHA256 prior to use in the in HMAC generation process.</li>
    <li>The Secret MUST either be set up in a configuration option for each host or process, or generated as a random string when starting the XMPP server. Creation of the Secret MUST NOT require communication between the Originating Server, the Authoritative Server, and optionally a third party (such as a database).</li>
    <li>The output of the SHA256 hashing algorithm MUST be provided in the hexadecimal representation; this helps to avoid encoding problems.</li>
    <li>The hostname of the Receiving Server, the hostname of the Originating Server, and the Stream ID SHOULD be concatenated with a Unicode space character (U+0020) as the delimiter; this helps to avoid ambiguity in concatenation. <note>For example, the string "example.inform.example.org" could be construed as a concatenation of "example.info" and "rm.example.org" or of "example.in" and "form.example.org".</note></li>
  </ol>
</section1>
<section1 topic="Example" anchor="example">
  <p>This document closely follows the description of the dialback protocol in <span class="ref"><link url="http://tools.ietf.org/html/rfc3920">RFC 3920</link></span> <note>RFC 3920: Extensible Messaging and Presence Protocol (XMPP): Core &lt;<link url="http://tools.ietf.org/html/rfc3920">http://tools.ietf.org/html/rfc3920</link>&gt;.</note> and <span class="ref"><link url="https://xmpp.org/extensions/xep-0220.html">Server Dialback (XEP-0220)</link></span> <note>XEP-0220: Server Dialback &lt;<link url="https://xmpp.org/extensions/xep-0220.html">https://xmpp.org/extensions/xep-0220.html</link>&gt;.</note>, but omits steps that are not important for the generation and validation of the dialback keys. For ease of comparison the numbering of the steps is the same as in section 8.3 of <cite>RFC 3920</cite> and Appendix C.3 of <cite>XEP-0220</cite>. Any line breaks in the examples are included for the purpose of readability only.</p>
  <p>The following data values are used in the examples:</p>
  <table caption="Data Used in Examples">
    <tr>
      <td>Originating Server</td>
      <td>example.org</td>
    </tr>
    <tr>
      <td>Authoritative Server</td>
      <td>example.org</td>
    </tr>
    <tr>
      <td>Receiving Server</td>
      <td>xmpp.example.com</td>
    </tr>
    <tr>
      <td>Secret</td>
      <td>s3cr3tf0rd14lb4ck</td>
    </tr>
    <tr>
      <td>Stream ID</td>
      <td>D60000229F</td>
    </tr>
  </table>
  <p>3. Receiving Server sends a stream header back to the Originating Server, including a unique ID for this interaction:</p>
  <code><![CDATA[
<stream:stream
  xmlns:stream='http://etherx.jabber.org/streams'
  xmlns='jabber:server'
  xmlns:db='jabber:server:dialback'
  to='xmpp.example.com'
  from='example.org'
  id='D60000229F'>
]]></code>
  <p>The Originating Server now generates a dialback key to be sent to the Receiving Server:</p>
  <code>
key = HMAC-SHA256(
                   SHA256(secret),
                   { Receiving server, ' ', Originating server, ' ', Stream ID}
                 )
    = HMAC-SHA256(
                   SHA256('s3cr3tf0rd14lb4ck'),
                   { 'xmpp.example.com', ' ', 'example.org', ' ', 'D60000229F' }
                 )
    = HMAC-SHA256(
                   'a7136eb1f46c9ef18c5e78c36ca257067c69b3d518285f0b18a96c33beae9acc',
                   'xmpp.example.com example.org D60000229F'
                 )
    = '37c69b1cf07a3f67c04a5ef5902fa5114f2c76fe4a2686482ba5b89323075643'
  </code>
  <p>4. The Originating Server sends the generated dialback key to the Receiving Server:</p>
  <code><![CDATA[
<db:result
  to='xmpp.example.com'
  from='example.org'>
    37c69b1cf07a3f67c04a5ef5902fa5114f2c76fe4a2686482ba5b89323075643
</db:result>
]]></code>
  <p>8. The Receiving Server sends the Authoritative Server a request for verification of the key:</p>
  <code><![CDATA[
<db:verify
  to='example.org'
  from='xmpp.example.com'
  id='D60000229F'>
    37c69b1cf07a3f67c04a5ef5902fa5114f2c76fe4a2686482ba5b89323075643
</db:verify>
]]></code>
  <p>The Authoritative Server calculates the valid key for this verify request, using data supplied in the packet and the secret shared with the Originating Server.</p>
  <code>
key = HMAC-SHA256(
                   SHA256(secret),
                   { Receiving Server, ' ', Authoritative Server, ' ', Stream ID }
                 )
    = HMAC-SHA256(
                   SHA256('s3cr3tf0rd14lb4ck'),
                   { 'xmpp.example.com', ' ', 'example.org', ' ', 'D60000229F' }
                 )
    = HMAC-SHA256(
                    'a7136eb1f46c9ef18c5e78c36ca257067c69b3d518285f0b18a96c33beae9acc',
                    'xmpp.example.com example.org D60000229F'
                  )
    = '37c69b1cf07a3f67c04a5ef5902fa5114f2c76fe4a2686482ba5b89323075643'
    </code>
    <p>9. The Authoritative Server compares this value to the key contained in the verification requests and informs the Originating Server of the result, in our example a success:</p>
  <code><![CDATA[
<db:verify
  to='xmpp.example.com'
  from='example.org'
  id='D60000229F'
  type='valid'/>
]]></code>
</section1>
<section1 topic="Security Considerations" anchor="security">
  <p>This document introduces no security considerations or concerns above and beyond those discussed in <span class="ref"><link url="http://tools.ietf.org/html/rfc3920">RFC 3920</link></span> <note>RFC 3920: Extensible Messaging and Presence Protocol (XMPP): Core &lt;<link url="http://tools.ietf.org/html/rfc3920">http://tools.ietf.org/html/rfc3920</link>&gt;.</note> and <span class="ref"><link url="https://xmpp.org/extensions/xep-0220.html">Server Dialback (XEP-0220)</link></span> <note>XEP-0220: Server Dialback &lt;<link url="https://xmpp.org/extensions/xep-0220.html">https://xmpp.org/extensions/xep-0220.html</link>&gt;.</note>.</p>
</section1>
<section1 topic="IANA Considerations" anchor="iana">
  <p>This document requires no interaction with the <span class="ref"><link url="http://www.iana.org/">Internet Assigned Numbers Authority (IANA)</link></span> <note>The Internet Assigned Numbers Authority (IANA) is the central coordinator for the assignment of unique parameter values for Internet protocols, such as port numbers and URI schemes. For further information, see &lt;<link url="http://www.iana.org/">http://www.iana.org/</link>&gt;.</note>.</p>
</section1>
<section1 topic="XMPP Registrar Considerations" anchor="registrar">
  <p>This document requires no interaction with the <span class="ref"><link url="https://xmpp.org/registrar/">XMPP Registrar</link></span> <note>The XMPP Registrar maintains a list of reserved protocol namespaces as well as registries of parameters used in the context of XMPP extension protocols approved by the XMPP Standards Foundation. For further information, see &lt;<link url="https://xmpp.org/registrar/">https://xmpp.org/registrar/</link>&gt;.</note>.</p>
</section1>
<section1 topic="Acknowledgements" anchor="ack">
  <p>Thanks to Ian Paterson and Matthias Wimmer for their feedback.</p>
</section1>
</xep>
