aboutsummaryrefslogtreecommitdiff
path: root/crypto/krb5/doc/html/basic
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/krb5/doc/html/basic')
-rw-r--r--crypto/krb5/doc/html/basic/ccache_def.html277
-rw-r--r--crypto/krb5/doc/html/basic/date_format.html314
-rw-r--r--crypto/krb5/doc/html/basic/index.html140
-rw-r--r--crypto/krb5/doc/html/basic/keytab_def.html180
-rw-r--r--crypto/krb5/doc/html/basic/rcache_def.html229
-rw-r--r--crypto/krb5/doc/html/basic/stash_file_def.html148
6 files changed, 0 insertions, 1288 deletions
diff --git a/crypto/krb5/doc/html/basic/ccache_def.html b/crypto/krb5/doc/html/basic/ccache_def.html
deleted file mode 100644
index 5776be96b0d6..000000000000
--- a/crypto/krb5/doc/html/basic/ccache_def.html
+++ /dev/null
@@ -1,277 +0,0 @@
-<!DOCTYPE html>
-
-<html lang="en" data-content_root="../">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
-
- <title>Credential cache &#8212; MIT Kerberos Documentation</title>
- <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
- <link rel="stylesheet" type="text/css" href="../_static/agogo.css?v=879f3c71" />
- <link rel="stylesheet" type="text/css" href="../_static/kerb.css?v=6a0b3979" />
- <script src="../_static/documentation_options.js?v=236fef3b"></script>
- <script src="../_static/doctools.js?v=888ff710"></script>
- <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
- <link rel="author" title="About these documents" href="../about.html" />
- <link rel="index" title="Index" href="../genindex.html" />
- <link rel="search" title="Search" href="../search.html" />
- <link rel="copyright" title="Copyright" href="../copyright.html" />
- <link rel="next" title="keytab" href="keytab_def.html" />
- <link rel="prev" title="Kerberos V5 concepts" href="index.html" />
- </head><body>
- <div class="header-wrapper">
- <div class="header">
-
-
- <h1><a href="../index.html">MIT Kerberos Documentation</a></h1>
-
- <div class="rel">
-
- <a href="../index.html" title="Full Table of Contents"
- accesskey="C">Contents</a> |
- <a href="index.html" title="Kerberos V5 concepts"
- accesskey="P">previous</a> |
- <a href="keytab_def.html" title="keytab"
- accesskey="N">next</a> |
- <a href="../genindex.html" title="General Index"
- accesskey="I">index</a> |
- <a href="../search.html" title="Enter search criteria"
- accesskey="S">Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__Credential cache">feedback</a>
- </div>
- </div>
- </div>
-
- <div class="content-wrapper">
- <div class="content">
- <div class="document">
-
- <div class="documentwrapper">
- <div class="bodywrapper">
- <div class="body" role="main">
-
- <section id="credential-cache">
-<span id="ccache-definition"></span><h1>Credential cache<a class="headerlink" href="#credential-cache" title="Link to this heading">¶</a></h1>
-<p>A credential cache (or “ccache”) holds Kerberos credentials while they
-remain valid and, generally, while the user’s session lasts, so that
-authenticating to a service multiple times (e.g., connecting to a web
-or mail server more than once) doesn’t require contacting the KDC
-every time.</p>
-<p>A credential cache usually contains one initial ticket which is
-obtained using a password or another form of identity verification.
-If this ticket is a ticket-granting ticket, it can be used to obtain
-additional credentials without the password. Because the credential
-cache does not store the password, less long-term damage can be done
-to the user’s account if the machine is compromised.</p>
-<p>A credentials cache stores a default client principal name, set when
-the cache is created. This is the name shown at the top of the
-<a class="reference internal" href="../user/user_commands/klist.html#klist-1"><span class="std std-ref">klist</span></a> <em>-A</em> output.</p>
-<p>Each normal cache entry includes a service principal name, a client
-principal name (which, in some ccache types, need not be the same as
-the default), lifetime information, and flags, along with the
-credential itself. There are also other entries, indicated by special
-names, that store additional information.</p>
-<section id="ccache-types">
-<h2>ccache types<a class="headerlink" href="#ccache-types" title="Link to this heading">¶</a></h2>
-<p>The credential cache interface, like the <a class="reference internal" href="keytab_def.html#keytab-definition"><span class="std std-ref">keytab</span></a> and
-<a class="reference internal" href="rcache_def.html#rcache-definition"><span class="std std-ref">replay cache</span></a> interfaces, uses <cite>TYPE:value</cite> strings to
-indicate the type of credential cache and any associated cache naming
-data to use.</p>
-<p>There are several kinds of credentials cache supported in the MIT
-Kerberos library. Not all are supported on every platform. In most
-cases, it should be correct to use the default type built into the
-library.</p>
-<ol class="arabic">
-<li><p><strong>API</strong> is only implemented on Windows. It communicates with a
-server process that holds the credentials in memory for the user,
-rather than writing them to disk.</p></li>
-<li><p><strong>DIR</strong> points to the storage location of the collection of the
-credential caches in <em>FILE:</em> format. It is most useful when dealing
-with multiple Kerberos realms and KDCs. For release 1.10 the
-directory must already exist. In post-1.10 releases the
-requirement is for parent directory to exist and the current
-process must have permissions to create the directory if it does
-not exist. See <a class="reference internal" href="#col-ccache"><span class="std std-ref">Collections of caches</span></a> for details. New in release 1.10.
-The following residual forms are supported:</p>
-<ul class="simple">
-<li><p>DIR:dirname</p></li>
-<li><p>DIR::dirpath/filename - a single cache within the directory</p></li>
-</ul>
-<p>Switching to a ccache of the latter type causes it to become the
-primary for the directory.</p>
-</li>
-<li><p><strong>FILE</strong> caches are the simplest and most portable. A simple flat
-file format is used to store one credential after another. This is
-the default ccache type if no type is specified in a ccache name.</p></li>
-<li><p><strong>KCM</strong> caches work by contacting a daemon process called <code class="docutils literal notranslate"><span class="pre">kcm</span></code>
-to perform cache operations. If the cache name is just <code class="docutils literal notranslate"><span class="pre">KCM:</span></code>,
-the default cache as determined by the KCM daemon will be used.
-Newly created caches must generally be named <code class="docutils literal notranslate"><span class="pre">KCM:uid:name</span></code>,
-where <em>uid</em> is the effective user ID of the running process.</p>
-<p>KCM client support is new in release 1.13. A KCM daemon has not
-yet been implemented in MIT krb5, but the client will interoperate
-with the KCM daemon implemented by Heimdal. macOS 10.7 and higher
-provides a KCM daemon as part of the operating system, and the
-<strong>KCM</strong> cache type is used as the default cache on that platform in
-a default build.</p>
-</li>
-<li><p><strong>KEYRING</strong> is Linux-specific, and uses the kernel keyring support
-to store credential data in unswappable kernel memory where only
-the current user should be able to access it. The following
-residual forms are supported:</p>
-<ul class="simple">
-<li><p>KEYRING:name</p></li>
-<li><p>KEYRING:process:name - process keyring</p></li>
-<li><p>KEYRING:thread:name - thread keyring</p></li>
-</ul>
-<p>Starting with release 1.12 the <em>KEYRING</em> type supports collections.
-The following new residual forms were added:</p>
-<ul class="simple">
-<li><p>KEYRING:session:name - session keyring</p></li>
-<li><p>KEYRING:user:name - user keyring</p></li>
-<li><p>KEYRING:persistent:uidnumber - persistent per-UID collection.
-Unlike the user keyring, this collection survives after the user
-logs out, until the cache credentials expire. This type of
-ccache requires support from the kernel; otherwise, it will fall
-back to the user keyring.</p></li>
-</ul>
-<p>See <a class="reference internal" href="#col-ccache"><span class="std std-ref">Collections of caches</span></a> for details.</p>
-</li>
-<li><p><strong>MEMORY</strong> caches are for storage of credentials that don’t need to
-be made available outside of the current process. For example, a
-memory ccache is used by <a class="reference internal" href="../admin/admin_commands/kadmin_local.html#kadmin-1"><span class="std std-ref">kadmin</span></a> to store the
-administrative ticket used to contact the admin server. Memory
-ccaches are faster than file ccaches and are automatically
-destroyed when the process exits.</p></li>
-<li><p><strong>MSLSA</strong> is a Windows-specific cache type that accesses the
-Windows credential store.</p></li>
-</ol>
-</section>
-<section id="collections-of-caches">
-<span id="col-ccache"></span><h2>Collections of caches<a class="headerlink" href="#collections-of-caches" title="Link to this heading">¶</a></h2>
-<p>Some credential cache types can support collections of multiple
-caches. One of the caches in the collection is designated as the
-<em>primary</em> and will be used when the collection is resolved as a cache.
-When a collection-enabled cache type is the default cache for a
-process, applications can search the specified collection for a
-specific client principal, and GSSAPI applications will automatically
-select between the caches in the collection based on criteria such as
-the target service realm.</p>
-<p>Credential cache collections are new in release 1.10, with support
-from the <strong>DIR</strong> and <strong>API</strong> ccache types. Starting in release 1.12,
-collections are also supported by the <strong>KEYRING</strong> ccache type.
-Collections are supported by the <strong>KCM</strong> ccache type in release 1.13.</p>
-<section id="tool-alterations-to-use-cache-collection">
-<h3>Tool alterations to use cache collection<a class="headerlink" href="#tool-alterations-to-use-cache-collection" title="Link to this heading">¶</a></h3>
-<ul class="simple">
-<li><p><a class="reference internal" href="../user/user_commands/kdestroy.html#kdestroy-1"><span class="std std-ref">kdestroy</span></a> <em>-A</em> will destroy all caches in the collection.</p></li>
-<li><p>If the default cache type supports switching, <a class="reference internal" href="../user/user_commands/kinit.html#kinit-1"><span class="std std-ref">kinit</span></a>
-<em>princname</em> will search the collection for a matching cache and
-store credentials there, or will store credentials in a new unique
-cache of the default type if no existing cache for the principal
-exists. Either way, kinit will switch to the selected cache.</p></li>
-<li><p><a class="reference internal" href="../user/user_commands/klist.html#klist-1"><span class="std std-ref">klist</span></a> <em>-l</em> will list the caches in the collection.</p></li>
-<li><p><a class="reference internal" href="../user/user_commands/klist.html#klist-1"><span class="std std-ref">klist</span></a> <em>-A</em> will show the content of all caches in the
-collection.</p></li>
-<li><p><a class="reference internal" href="../user/user_commands/kswitch.html#kswitch-1"><span class="std std-ref">kswitch</span></a> <em>-p princname</em> will search the collection for a
-matching cache and switch to it.</p></li>
-<li><p><a class="reference internal" href="../user/user_commands/kswitch.html#kswitch-1"><span class="std std-ref">kswitch</span></a> <em>-c cachename</em> will switch to a specified cache.</p></li>
-</ul>
-</section>
-</section>
-<section id="default-ccache-name">
-<h2>Default ccache name<a class="headerlink" href="#default-ccache-name" title="Link to this heading">¶</a></h2>
-<p>The default credential cache name is determined by the following, in
-descending order of priority:</p>
-<ol class="arabic simple">
-<li><p>The <strong>KRB5CCNAME</strong> environment variable. For example,
-<code class="docutils literal notranslate"><span class="pre">KRB5CCNAME=DIR:/mydir/</span></code>.</p></li>
-<li><p>The <strong>default_ccache_name</strong> profile variable in <a class="reference internal" href="../admin/conf_files/krb5_conf.html#libdefaults"><span class="std std-ref">[libdefaults]</span></a>.</p></li>
-<li><p>The hardcoded default, <a class="reference internal" href="../mitK5defaults.html#paths"><span class="std std-ref">DEFCCNAME</span></a>.</p></li>
-</ol>
-</section>
-</section>
-
-
- <div class="clearer"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="sidebar">
-
- <h2>On this page</h2>
- <ul>
-<li><a class="reference internal" href="#">Credential cache</a><ul>
-<li><a class="reference internal" href="#ccache-types">ccache types</a></li>
-<li><a class="reference internal" href="#collections-of-caches">Collections of caches</a><ul>
-<li><a class="reference internal" href="#tool-alterations-to-use-cache-collection">Tool alterations to use cache collection</a></li>
-</ul>
-</li>
-<li><a class="reference internal" href="#default-ccache-name">Default ccache name</a></li>
-</ul>
-</li>
-</ul>
-
- <br/>
- <h2>Table of contents</h2>
- <ul class="current">
-<li class="toctree-l1"><a class="reference internal" href="../user/index.html">For users</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../admin/index.html">For administrators</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../appdev/index.html">For application developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../plugindev/index.html">For plugin module developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build/index.html">Building Kerberos V5</a></li>
-<li class="toctree-l1 current"><a class="reference internal" href="index.html">Kerberos V5 concepts</a><ul class="current">
-<li class="toctree-l2 current"><a class="current reference internal" href="#">Credential cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="keytab_def.html">keytab</a></li>
-<li class="toctree-l2"><a class="reference internal" href="rcache_def.html">replay cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="stash_file_def.html">stash file</a></li>
-<li class="toctree-l2"><a class="reference internal" href="date_format.html">Supported date and time formats</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="../formats/index.html">Protocols and file formats</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../mitK5features.html">MIT Kerberos features</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build_this.html">How to build this documentation from the source</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../about.html">Contributing to the MIT Kerberos Documentation</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../resources.html">Resources</a></li>
-</ul>
-
- <br/>
- <h4><a href="../index.html">Full Table of Contents</a></h4>
- <h4>Search</h4>
- <form class="search" action="../search.html" method="get">
- <input type="text" name="q" size="18" />
- <input type="submit" value="Go" />
- <input type="hidden" name="check_keywords" value="yes" />
- <input type="hidden" name="area" value="default" />
- </form>
-
- </div>
- <div class="clearer"></div>
- </div>
- </div>
-
- <div class="footer-wrapper">
- <div class="footer" >
- <div class="right" ><i>Release: 1.22-final</i><br />
- &copy; <a href="../copyright.html">Copyright</a> 1985-2025, MIT.
- </div>
- <div class="left">
-
- <a href="../index.html" title="Full Table of Contents"
- >Contents</a> |
- <a href="index.html" title="Kerberos V5 concepts"
- >previous</a> |
- <a href="keytab_def.html" title="keytab"
- >next</a> |
- <a href="../genindex.html" title="General Index"
- >index</a> |
- <a href="../search.html" title="Enter search criteria"
- >Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__Credential cache">feedback</a>
- </div>
- </div>
- </div>
-
- </body>
-</html> \ No newline at end of file
diff --git a/crypto/krb5/doc/html/basic/date_format.html b/crypto/krb5/doc/html/basic/date_format.html
deleted file mode 100644
index 75ee7c2bfe5c..000000000000
--- a/crypto/krb5/doc/html/basic/date_format.html
+++ /dev/null
@@ -1,314 +0,0 @@
-<!DOCTYPE html>
-
-<html lang="en" data-content_root="../">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
-
- <title>Supported date and time formats &#8212; MIT Kerberos Documentation</title>
- <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
- <link rel="stylesheet" type="text/css" href="../_static/agogo.css?v=879f3c71" />
- <link rel="stylesheet" type="text/css" href="../_static/kerb.css?v=6a0b3979" />
- <script src="../_static/documentation_options.js?v=236fef3b"></script>
- <script src="../_static/doctools.js?v=888ff710"></script>
- <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
- <link rel="author" title="About these documents" href="../about.html" />
- <link rel="index" title="Index" href="../genindex.html" />
- <link rel="search" title="Search" href="../search.html" />
- <link rel="copyright" title="Copyright" href="../copyright.html" />
- <link rel="next" title="Protocols and file formats" href="../formats/index.html" />
- <link rel="prev" title="stash file" href="stash_file_def.html" />
- </head><body>
- <div class="header-wrapper">
- <div class="header">
-
-
- <h1><a href="../index.html">MIT Kerberos Documentation</a></h1>
-
- <div class="rel">
-
- <a href="../index.html" title="Full Table of Contents"
- accesskey="C">Contents</a> |
- <a href="stash_file_def.html" title="stash file"
- accesskey="P">previous</a> |
- <a href="../formats/index.html" title="Protocols and file formats"
- accesskey="N">next</a> |
- <a href="../genindex.html" title="General Index"
- accesskey="I">index</a> |
- <a href="../search.html" title="Enter search criteria"
- accesskey="S">Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__Supported date and time formats">feedback</a>
- </div>
- </div>
- </div>
-
- <div class="content-wrapper">
- <div class="content">
- <div class="document">
-
- <div class="documentwrapper">
- <div class="bodywrapper">
- <div class="body" role="main">
-
- <section id="supported-date-and-time-formats">
-<span id="datetime"></span><h1>Supported date and time formats<a class="headerlink" href="#supported-date-and-time-formats" title="Link to this heading">¶</a></h1>
-<section id="time-duration">
-<span id="duration"></span><h2>Time duration<a class="headerlink" href="#time-duration" title="Link to this heading">¶</a></h2>
-<p>This format is used to express a time duration in the Kerberos
-configuration files and user commands. The allowed formats are:</p>
-<blockquote>
-<div><table class="docutils align-default">
-<tbody>
-<tr class="row-odd"><td><p>Format</p></td>
-<td><p>Example</p></td>
-<td><p>Value</p></td>
-</tr>
-<tr class="row-even"><td><p>h:m[:s]</p></td>
-<td><p>36:00</p></td>
-<td><p>36 hours</p></td>
-</tr>
-<tr class="row-odd"><td><p>NdNhNmNs</p></td>
-<td><p>8h30s</p></td>
-<td><p>8 hours 30 seconds</p></td>
-</tr>
-<tr class="row-even"><td><p>N (number of seconds)</p></td>
-<td><p>3600</p></td>
-<td><p>1 hour</p></td>
-</tr>
-</tbody>
-</table>
-</div></blockquote>
-<p>Here <em>N</em> denotes a number, <em>d</em> - days, <em>h</em> - hours, <em>m</em> - minutes,
-<em>s</em> - seconds.</p>
-<div class="admonition note">
-<p class="admonition-title">Note</p>
-<p>The time interval should not exceed 2147483647 seconds.</p>
-</div>
-<p>Examples:</p>
-<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">Request</span> <span class="n">a</span> <span class="n">ticket</span> <span class="n">valid</span> <span class="k">for</span> <span class="n">one</span> <span class="n">hour</span><span class="p">,</span> <span class="n">five</span> <span class="n">hours</span><span class="p">,</span> <span class="mi">30</span> <span class="n">minutes</span>
-<span class="ow">and</span> <span class="mi">10</span> <span class="n">days</span> <span class="n">respectively</span><span class="p">:</span>
-
- <span class="n">kinit</span> <span class="o">-</span><span class="n">l</span> <span class="mi">3600</span>
- <span class="n">kinit</span> <span class="o">-</span><span class="n">l</span> <span class="mi">5</span><span class="p">:</span><span class="mi">00</span>
- <span class="n">kinit</span> <span class="o">-</span><span class="n">l</span> <span class="mi">30</span><span class="n">m</span>
- <span class="n">kinit</span> <span class="o">-</span><span class="n">l</span> <span class="s2">&quot;10d 0h 0m 0s&quot;</span>
-</pre></div>
-</div>
-</section>
-<section id="getdate-time">
-<span id="getdate"></span><h2>getdate time<a class="headerlink" href="#getdate-time" title="Link to this heading">¶</a></h2>
-<p>Some of the kadmin and kdb5_util commands take a date-time in a
-human-readable format. Some of the acceptable date-time
-strings are:</p>
-<blockquote>
-<div><table class="docutils align-default">
-<thead>
-<tr class="row-odd"><th class="head"></th>
-<th class="head"><p>Format</p></th>
-<th class="head"><p>Example</p></th>
-</tr>
-</thead>
-<tbody>
-<tr class="row-even"><td rowspan="3"><p>Date</p></td>
-<td><p>mm/dd/yy</p></td>
-<td><p>07/27/12</p></td>
-</tr>
-<tr class="row-odd"><td><p>month dd, yyyy</p></td>
-<td><p>Jul 27, 2012</p></td>
-</tr>
-<tr class="row-even"><td><p>yyyy-mm-dd</p></td>
-<td><p>2012-07-27</p></td>
-</tr>
-<tr class="row-odd"><td rowspan="2"><p>Absolute
-time</p></td>
-<td><p>HH:mm[:ss]pp</p></td>
-<td><p>08:30 PM</p></td>
-</tr>
-<tr class="row-even"><td><p>hh:mm[:ss]</p></td>
-<td><p>20:30</p></td>
-</tr>
-<tr class="row-odd"><td><p>Relative
-time</p></td>
-<td><p>N tt</p></td>
-<td><p>30 sec</p></td>
-</tr>
-<tr class="row-even"><td rowspan="2"><p>Time zone</p></td>
-<td><p>Z</p></td>
-<td><p>EST</p></td>
-</tr>
-<tr class="row-odd"><td><p>z</p></td>
-<td><p>-0400</p></td>
-</tr>
-</tbody>
-</table>
-</div></blockquote>
-<p>(See <a class="reference internal" href="#abbreviation"><span class="std std-ref">Abbreviations used in this document</span></a>.)</p>
-<p>Examples:</p>
-<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">Create</span> <span class="n">a</span> <span class="n">principal</span> <span class="n">that</span> <span class="n">expires</span> <span class="n">on</span> <span class="n">the</span> <span class="n">date</span> <span class="n">indicated</span><span class="p">:</span>
- <span class="n">addprinc</span> <span class="n">test1</span> <span class="o">-</span><span class="n">expire</span> <span class="s2">&quot;3/27/12 10:00:07 EST&quot;</span>
- <span class="n">addprinc</span> <span class="n">test2</span> <span class="o">-</span><span class="n">expire</span> <span class="s2">&quot;January 23, 2015 10:05pm&quot;</span>
- <span class="n">addprinc</span> <span class="n">test3</span> <span class="o">-</span><span class="n">expire</span> <span class="s2">&quot;22:00 GMT&quot;</span>
-<span class="n">Add</span> <span class="n">a</span> <span class="n">principal</span> <span class="n">that</span> <span class="n">will</span> <span class="n">expire</span> <span class="ow">in</span> <span class="mi">30</span> <span class="n">minutes</span><span class="p">:</span>
- <span class="n">addprinc</span> <span class="n">test4</span> <span class="o">-</span><span class="n">expire</span> <span class="s2">&quot;30 minutes&quot;</span>
-</pre></div>
-</div>
-</section>
-<section id="absolute-time">
-<span id="abstime"></span><h2>Absolute time<a class="headerlink" href="#absolute-time" title="Link to this heading">¶</a></h2>
-<p>This rarely used date-time format can be noted in one of the
-following ways:</p>
-<blockquote>
-<div><table class="docutils align-default">
-<thead>
-<tr class="row-odd"><th class="head"><p>Format</p></th>
-<th class="head"><p>Example</p></th>
-<th class="head"><p>Value</p></th>
-</tr>
-</thead>
-<tbody>
-<tr class="row-even"><td><p>yyyymmddhhmmss</p></td>
-<td><p>20141231235900</p></td>
-<td rowspan="5"><p>One minute
-before 2015</p></td>
-</tr>
-<tr class="row-odd"><td><p>yyyy.mm.dd.hh.mm.ss</p></td>
-<td><p>2014.12.31.23.59.00</p></td>
-</tr>
-<tr class="row-even"><td><p>yymmddhhmmss</p></td>
-<td><p>141231235900</p></td>
-</tr>
-<tr class="row-odd"><td><p>yy.mm.dd.hh.mm.ss</p></td>
-<td><p>14.12.31.23.59.00</p></td>
-</tr>
-<tr class="row-even"><td><p>dd-month-yyyy:hh:mm:ss</p></td>
-<td><p>31-Dec-2014:23:59:00</p></td>
-</tr>
-<tr class="row-odd"><td><p>hh:mm:ss</p></td>
-<td><p>20:00:00</p></td>
-<td rowspan="2"><p>8 o’clock in
-the evening</p></td>
-</tr>
-<tr class="row-even"><td><p>hhmmss</p></td>
-<td><p>200000</p></td>
-</tr>
-</tbody>
-</table>
-</div></blockquote>
-<p>(See <a class="reference internal" href="#abbreviation"><span class="std std-ref">Abbreviations used in this document</span></a>.)</p>
-<p>Example:</p>
-<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">Set</span> <span class="n">the</span> <span class="n">default</span> <span class="n">expiration</span> <span class="n">date</span> <span class="n">to</span> <span class="n">July</span> <span class="mi">27</span><span class="p">,</span> <span class="mi">2012</span> <span class="n">at</span> <span class="mi">20</span><span class="p">:</span><span class="mi">30</span>
-<span class="n">default_principal_expiration</span> <span class="o">=</span> <span class="mi">20120727203000</span>
-</pre></div>
-</div>
-<section id="abbreviations-used-in-this-document">
-<span id="abbreviation"></span><h3>Abbreviations used in this document<a class="headerlink" href="#abbreviations-used-in-this-document" title="Link to this heading">¶</a></h3>
-<div class="line-block">
-<div class="line"><em>month</em> : locale’s month name or its abbreviation;</div>
-<div class="line"><em>dd</em> : day of month (01-31);</div>
-<div class="line"><em>HH</em> : hours (00-12);</div>
-<div class="line"><em>hh</em> : hours (00-23);</div>
-<div class="line"><em>mm</em> : in time - minutes (00-59); in date - month (01-12);</div>
-<div class="line"><em>N</em> : number;</div>
-<div class="line"><em>pp</em> : AM or PM;</div>
-<div class="line"><em>ss</em> : seconds (00-60);</div>
-<div class="line"><em>tt</em> : time units (hours, minutes, min, seconds, sec);</div>
-<div class="line"><em>yyyy</em> : year;</div>
-<div class="line"><em>yy</em> : last two digits of the year;</div>
-<div class="line"><em>Z</em> : alphabetic time zone abbreviation;</div>
-<div class="line"><em>z</em> : numeric time zone;</div>
-</div>
-<div class="admonition note">
-<p class="admonition-title">Note</p>
-<ul class="simple">
-<li><p>If the date specification contains spaces, you may need to
-enclose it in double quotes;</p></li>
-<li><p>All keywords are case-insensitive.</p></li>
-</ul>
-</div>
-</section>
-</section>
-</section>
-
-
- <div class="clearer"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="sidebar">
-
- <h2>On this page</h2>
- <ul>
-<li><a class="reference internal" href="#">Supported date and time formats</a><ul>
-<li><a class="reference internal" href="#time-duration">Time duration</a></li>
-<li><a class="reference internal" href="#getdate-time">getdate time</a></li>
-<li><a class="reference internal" href="#absolute-time">Absolute time</a><ul>
-<li><a class="reference internal" href="#abbreviations-used-in-this-document">Abbreviations used in this document</a></li>
-</ul>
-</li>
-</ul>
-</li>
-</ul>
-
- <br/>
- <h2>Table of contents</h2>
- <ul class="current">
-<li class="toctree-l1"><a class="reference internal" href="../user/index.html">For users</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../admin/index.html">For administrators</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../appdev/index.html">For application developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../plugindev/index.html">For plugin module developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build/index.html">Building Kerberos V5</a></li>
-<li class="toctree-l1 current"><a class="reference internal" href="index.html">Kerberos V5 concepts</a><ul class="current">
-<li class="toctree-l2"><a class="reference internal" href="ccache_def.html">Credential cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="keytab_def.html">keytab</a></li>
-<li class="toctree-l2"><a class="reference internal" href="rcache_def.html">replay cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="stash_file_def.html">stash file</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="#">Supported date and time formats</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="../formats/index.html">Protocols and file formats</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../mitK5features.html">MIT Kerberos features</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build_this.html">How to build this documentation from the source</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../about.html">Contributing to the MIT Kerberos Documentation</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../resources.html">Resources</a></li>
-</ul>
-
- <br/>
- <h4><a href="../index.html">Full Table of Contents</a></h4>
- <h4>Search</h4>
- <form class="search" action="../search.html" method="get">
- <input type="text" name="q" size="18" />
- <input type="submit" value="Go" />
- <input type="hidden" name="check_keywords" value="yes" />
- <input type="hidden" name="area" value="default" />
- </form>
-
- </div>
- <div class="clearer"></div>
- </div>
- </div>
-
- <div class="footer-wrapper">
- <div class="footer" >
- <div class="right" ><i>Release: 1.22-final</i><br />
- &copy; <a href="../copyright.html">Copyright</a> 1985-2025, MIT.
- </div>
- <div class="left">
-
- <a href="../index.html" title="Full Table of Contents"
- >Contents</a> |
- <a href="stash_file_def.html" title="stash file"
- >previous</a> |
- <a href="../formats/index.html" title="Protocols and file formats"
- >next</a> |
- <a href="../genindex.html" title="General Index"
- >index</a> |
- <a href="../search.html" title="Enter search criteria"
- >Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__Supported date and time formats">feedback</a>
- </div>
- </div>
- </div>
-
- </body>
-</html> \ No newline at end of file
diff --git a/crypto/krb5/doc/html/basic/index.html b/crypto/krb5/doc/html/basic/index.html
deleted file mode 100644
index 1c62c9949b23..000000000000
--- a/crypto/krb5/doc/html/basic/index.html
+++ /dev/null
@@ -1,140 +0,0 @@
-<!DOCTYPE html>
-
-<html lang="en" data-content_root="../">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
-
- <title>Kerberos V5 concepts &#8212; MIT Kerberos Documentation</title>
- <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
- <link rel="stylesheet" type="text/css" href="../_static/agogo.css?v=879f3c71" />
- <link rel="stylesheet" type="text/css" href="../_static/kerb.css?v=6a0b3979" />
- <script src="../_static/documentation_options.js?v=236fef3b"></script>
- <script src="../_static/doctools.js?v=888ff710"></script>
- <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
- <link rel="author" title="About these documents" href="../about.html" />
- <link rel="index" title="Index" href="../genindex.html" />
- <link rel="search" title="Search" href="../search.html" />
- <link rel="copyright" title="Copyright" href="../copyright.html" />
- <link rel="next" title="Credential cache" href="ccache_def.html" />
- <link rel="prev" title="osconf.hin" href="../build/osconf.html" />
- </head><body>
- <div class="header-wrapper">
- <div class="header">
-
-
- <h1><a href="../index.html">MIT Kerberos Documentation</a></h1>
-
- <div class="rel">
-
- <a href="../index.html" title="Full Table of Contents"
- accesskey="C">Contents</a> |
- <a href="../build/osconf.html" title="osconf.hin"
- accesskey="P">previous</a> |
- <a href="ccache_def.html" title="Credential cache"
- accesskey="N">next</a> |
- <a href="../genindex.html" title="General Index"
- accesskey="I">index</a> |
- <a href="../search.html" title="Enter search criteria"
- accesskey="S">Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__Kerberos V5 concepts">feedback</a>
- </div>
- </div>
- </div>
-
- <div class="content-wrapper">
- <div class="content">
- <div class="document">
-
- <div class="documentwrapper">
- <div class="bodywrapper">
- <div class="body" role="main">
-
- <section id="kerberos-v5-concepts">
-<span id="basic-concepts"></span><h1>Kerberos V5 concepts<a class="headerlink" href="#kerberos-v5-concepts" title="Link to this heading">¶</a></h1>
-<div class="toctree-wrapper compound">
-<ul>
-<li class="toctree-l1"><a class="reference internal" href="ccache_def.html">Credential cache</a></li>
-<li class="toctree-l1"><a class="reference internal" href="keytab_def.html">keytab</a></li>
-<li class="toctree-l1"><a class="reference internal" href="rcache_def.html">replay cache</a></li>
-<li class="toctree-l1"><a class="reference internal" href="stash_file_def.html">stash file</a></li>
-<li class="toctree-l1"><a class="reference internal" href="date_format.html">Supported date and time formats</a></li>
-</ul>
-</div>
-</section>
-
-
- <div class="clearer"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="sidebar">
-
- <h2>On this page</h2>
- <ul>
-<li><a class="reference internal" href="#">Kerberos V5 concepts</a></li>
-</ul>
-
- <br/>
- <h2>Table of contents</h2>
- <ul class="current">
-<li class="toctree-l1"><a class="reference internal" href="../user/index.html">For users</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../admin/index.html">For administrators</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../appdev/index.html">For application developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../plugindev/index.html">For plugin module developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build/index.html">Building Kerberos V5</a></li>
-<li class="toctree-l1 current"><a class="current reference internal" href="#">Kerberos V5 concepts</a><ul>
-<li class="toctree-l2"><a class="reference internal" href="ccache_def.html">Credential cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="keytab_def.html">keytab</a></li>
-<li class="toctree-l2"><a class="reference internal" href="rcache_def.html">replay cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="stash_file_def.html">stash file</a></li>
-<li class="toctree-l2"><a class="reference internal" href="date_format.html">Supported date and time formats</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="../formats/index.html">Protocols and file formats</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../mitK5features.html">MIT Kerberos features</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build_this.html">How to build this documentation from the source</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../about.html">Contributing to the MIT Kerberos Documentation</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../resources.html">Resources</a></li>
-</ul>
-
- <br/>
- <h4><a href="../index.html">Full Table of Contents</a></h4>
- <h4>Search</h4>
- <form class="search" action="../search.html" method="get">
- <input type="text" name="q" size="18" />
- <input type="submit" value="Go" />
- <input type="hidden" name="check_keywords" value="yes" />
- <input type="hidden" name="area" value="default" />
- </form>
-
- </div>
- <div class="clearer"></div>
- </div>
- </div>
-
- <div class="footer-wrapper">
- <div class="footer" >
- <div class="right" ><i>Release: 1.22-final</i><br />
- &copy; <a href="../copyright.html">Copyright</a> 1985-2025, MIT.
- </div>
- <div class="left">
-
- <a href="../index.html" title="Full Table of Contents"
- >Contents</a> |
- <a href="../build/osconf.html" title="osconf.hin"
- >previous</a> |
- <a href="ccache_def.html" title="Credential cache"
- >next</a> |
- <a href="../genindex.html" title="General Index"
- >index</a> |
- <a href="../search.html" title="Enter search criteria"
- >Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__Kerberos V5 concepts">feedback</a>
- </div>
- </div>
- </div>
-
- </body>
-</html> \ No newline at end of file
diff --git a/crypto/krb5/doc/html/basic/keytab_def.html b/crypto/krb5/doc/html/basic/keytab_def.html
deleted file mode 100644
index 8ba48bb42a7f..000000000000
--- a/crypto/krb5/doc/html/basic/keytab_def.html
+++ /dev/null
@@ -1,180 +0,0 @@
-<!DOCTYPE html>
-
-<html lang="en" data-content_root="../">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
-
- <title>keytab &#8212; MIT Kerberos Documentation</title>
- <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
- <link rel="stylesheet" type="text/css" href="../_static/agogo.css?v=879f3c71" />
- <link rel="stylesheet" type="text/css" href="../_static/kerb.css?v=6a0b3979" />
- <script src="../_static/documentation_options.js?v=236fef3b"></script>
- <script src="../_static/doctools.js?v=888ff710"></script>
- <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
- <link rel="author" title="About these documents" href="../about.html" />
- <link rel="index" title="Index" href="../genindex.html" />
- <link rel="search" title="Search" href="../search.html" />
- <link rel="copyright" title="Copyright" href="../copyright.html" />
- <link rel="next" title="replay cache" href="rcache_def.html" />
- <link rel="prev" title="Credential cache" href="ccache_def.html" />
- </head><body>
- <div class="header-wrapper">
- <div class="header">
-
-
- <h1><a href="../index.html">MIT Kerberos Documentation</a></h1>
-
- <div class="rel">
-
- <a href="../index.html" title="Full Table of Contents"
- accesskey="C">Contents</a> |
- <a href="ccache_def.html" title="Credential cache"
- accesskey="P">previous</a> |
- <a href="rcache_def.html" title="replay cache"
- accesskey="N">next</a> |
- <a href="../genindex.html" title="General Index"
- accesskey="I">index</a> |
- <a href="../search.html" title="Enter search criteria"
- accesskey="S">Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__keytab">feedback</a>
- </div>
- </div>
- </div>
-
- <div class="content-wrapper">
- <div class="content">
- <div class="document">
-
- <div class="documentwrapper">
- <div class="bodywrapper">
- <div class="body" role="main">
-
- <section id="keytab">
-<span id="keytab-definition"></span><h1>keytab<a class="headerlink" href="#keytab" title="Link to this heading">¶</a></h1>
-<p>A keytab (short for “key table”) stores long-term keys for one or more
-principals. Keytabs are normally represented by files in a standard
-format, although in rare cases they can be represented in other ways.
-Keytabs are used most often to allow server applications to accept
-authentications from clients, but can also be used to obtain initial
-credentials for client applications.</p>
-<p>Keytabs are named using the format <em>type</em><code class="docutils literal notranslate"><span class="pre">:</span></code><em>value</em>. Usually
-<em>type</em> is <code class="docutils literal notranslate"><span class="pre">FILE</span></code> and <em>value</em> is the absolute pathname of the file.
-The other possible value for <em>type</em> is <code class="docutils literal notranslate"><span class="pre">MEMORY</span></code>, which indicates a
-temporary keytab stored in the memory of the current process.</p>
-<p>A keytab contains one or more entries, where each entry consists of a
-timestamp (indicating when the entry was written to the keytab), a
-principal name, a key version number, an encryption type, and the
-encryption key itself.</p>
-<p>A keytab can be displayed using the <a class="reference internal" href="../user/user_commands/klist.html#klist-1"><span class="std std-ref">klist</span></a> command with the
-<code class="docutils literal notranslate"><span class="pre">-k</span></code> option. Keytabs can be created or appended to by extracting
-keys from the KDC database using the <a class="reference internal" href="../admin/admin_commands/kadmin_local.html#kadmin-1"><span class="std std-ref">kadmin</span></a> <a class="reference internal" href="../admin/admin_commands/kadmin_local.html#ktadd"><span class="std std-ref">ktadd</span></a>
-command. Keytabs can be manipulated using the <a class="reference internal" href="../admin/admin_commands/ktutil.html#ktutil-1"><span class="std std-ref">ktutil</span></a> and
-<a class="reference internal" href="../admin/admin_commands/k5srvutil.html#k5srvutil-1"><span class="std std-ref">k5srvutil</span></a> commands.</p>
-<section id="default-keytab">
-<h2>Default keytab<a class="headerlink" href="#default-keytab" title="Link to this heading">¶</a></h2>
-<p>The default keytab is used by server applications if the application
-does not request a specific keytab. The name of the default keytab is
-determined by the following, in decreasing order of preference:</p>
-<ol class="arabic simple">
-<li><p>The <strong>KRB5_KTNAME</strong> environment variable.</p></li>
-<li><p>The <strong>default_keytab_name</strong> profile variable in <a class="reference internal" href="../admin/conf_files/krb5_conf.html#libdefaults"><span class="std std-ref">[libdefaults]</span></a>.</p></li>
-<li><p>The hardcoded default, <a class="reference internal" href="../mitK5defaults.html#paths"><span class="std std-ref">DEFKTNAME</span></a>.</p></li>
-</ol>
-</section>
-<section id="default-client-keytab">
-<h2>Default client keytab<a class="headerlink" href="#default-client-keytab" title="Link to this heading">¶</a></h2>
-<p>The default client keytab is used, if it is present and readable, to
-automatically obtain initial credentials for GSSAPI client
-applications. The principal name of the first entry in the client
-keytab is used by default when obtaining initial credentials. The
-name of the default client keytab is determined by the following, in
-decreasing order of preference:</p>
-<ol class="arabic simple">
-<li><p>The <strong>KRB5_CLIENT_KTNAME</strong> environment variable.</p></li>
-<li><p>The <strong>default_client_keytab_name</strong> profile variable in
-<a class="reference internal" href="../admin/conf_files/krb5_conf.html#libdefaults"><span class="std std-ref">[libdefaults]</span></a>.</p></li>
-<li><p>The hardcoded default, <a class="reference internal" href="../mitK5defaults.html#paths"><span class="std std-ref">DEFCKTNAME</span></a>.</p></li>
-</ol>
-</section>
-</section>
-
-
- <div class="clearer"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="sidebar">
-
- <h2>On this page</h2>
- <ul>
-<li><a class="reference internal" href="#">keytab</a><ul>
-<li><a class="reference internal" href="#default-keytab">Default keytab</a></li>
-<li><a class="reference internal" href="#default-client-keytab">Default client keytab</a></li>
-</ul>
-</li>
-</ul>
-
- <br/>
- <h2>Table of contents</h2>
- <ul class="current">
-<li class="toctree-l1"><a class="reference internal" href="../user/index.html">For users</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../admin/index.html">For administrators</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../appdev/index.html">For application developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../plugindev/index.html">For plugin module developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build/index.html">Building Kerberos V5</a></li>
-<li class="toctree-l1 current"><a class="reference internal" href="index.html">Kerberos V5 concepts</a><ul class="current">
-<li class="toctree-l2"><a class="reference internal" href="ccache_def.html">Credential cache</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="#">keytab</a></li>
-<li class="toctree-l2"><a class="reference internal" href="rcache_def.html">replay cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="stash_file_def.html">stash file</a></li>
-<li class="toctree-l2"><a class="reference internal" href="date_format.html">Supported date and time formats</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="../formats/index.html">Protocols and file formats</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../mitK5features.html">MIT Kerberos features</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build_this.html">How to build this documentation from the source</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../about.html">Contributing to the MIT Kerberos Documentation</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../resources.html">Resources</a></li>
-</ul>
-
- <br/>
- <h4><a href="../index.html">Full Table of Contents</a></h4>
- <h4>Search</h4>
- <form class="search" action="../search.html" method="get">
- <input type="text" name="q" size="18" />
- <input type="submit" value="Go" />
- <input type="hidden" name="check_keywords" value="yes" />
- <input type="hidden" name="area" value="default" />
- </form>
-
- </div>
- <div class="clearer"></div>
- </div>
- </div>
-
- <div class="footer-wrapper">
- <div class="footer" >
- <div class="right" ><i>Release: 1.22-final</i><br />
- &copy; <a href="../copyright.html">Copyright</a> 1985-2025, MIT.
- </div>
- <div class="left">
-
- <a href="../index.html" title="Full Table of Contents"
- >Contents</a> |
- <a href="ccache_def.html" title="Credential cache"
- >previous</a> |
- <a href="rcache_def.html" title="replay cache"
- >next</a> |
- <a href="../genindex.html" title="General Index"
- >index</a> |
- <a href="../search.html" title="Enter search criteria"
- >Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__keytab">feedback</a>
- </div>
- </div>
- </div>
-
- </body>
-</html> \ No newline at end of file
diff --git a/crypto/krb5/doc/html/basic/rcache_def.html b/crypto/krb5/doc/html/basic/rcache_def.html
deleted file mode 100644
index 3fa0a526dfc0..000000000000
--- a/crypto/krb5/doc/html/basic/rcache_def.html
+++ /dev/null
@@ -1,229 +0,0 @@
-<!DOCTYPE html>
-
-<html lang="en" data-content_root="../">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
-
- <title>replay cache &#8212; MIT Kerberos Documentation</title>
- <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
- <link rel="stylesheet" type="text/css" href="../_static/agogo.css?v=879f3c71" />
- <link rel="stylesheet" type="text/css" href="../_static/kerb.css?v=6a0b3979" />
- <script src="../_static/documentation_options.js?v=236fef3b"></script>
- <script src="../_static/doctools.js?v=888ff710"></script>
- <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
- <link rel="author" title="About these documents" href="../about.html" />
- <link rel="index" title="Index" href="../genindex.html" />
- <link rel="search" title="Search" href="../search.html" />
- <link rel="copyright" title="Copyright" href="../copyright.html" />
- <link rel="next" title="stash file" href="stash_file_def.html" />
- <link rel="prev" title="keytab" href="keytab_def.html" />
- </head><body>
- <div class="header-wrapper">
- <div class="header">
-
-
- <h1><a href="../index.html">MIT Kerberos Documentation</a></h1>
-
- <div class="rel">
-
- <a href="../index.html" title="Full Table of Contents"
- accesskey="C">Contents</a> |
- <a href="keytab_def.html" title="keytab"
- accesskey="P">previous</a> |
- <a href="stash_file_def.html" title="stash file"
- accesskey="N">next</a> |
- <a href="../genindex.html" title="General Index"
- accesskey="I">index</a> |
- <a href="../search.html" title="Enter search criteria"
- accesskey="S">Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__replay cache">feedback</a>
- </div>
- </div>
- </div>
-
- <div class="content-wrapper">
- <div class="content">
- <div class="document">
-
- <div class="documentwrapper">
- <div class="bodywrapper">
- <div class="body" role="main">
-
- <section id="replay-cache">
-<span id="rcache-definition"></span><h1>replay cache<a class="headerlink" href="#replay-cache" title="Link to this heading">¶</a></h1>
-<p>A replay cache (or “rcache”) keeps track of all authenticators
-recently presented to a service. If a duplicate authentication
-request is detected in the replay cache, an error message is sent to
-the application program.</p>
-<p>The replay cache interface, like the credential cache and
-<a class="reference internal" href="keytab_def.html#keytab-definition"><span class="std std-ref">keytab</span></a> interfaces, uses <cite>type:residual</cite> strings to
-indicate the type of replay cache and any associated cache naming
-data to use.</p>
-<section id="background-information">
-<h2>Background information<a class="headerlink" href="#background-information" title="Link to this heading">¶</a></h2>
-<p>Some Kerberos or GSSAPI services use a simple authentication mechanism
-where a message is sent containing an authenticator, which establishes
-the encryption key that the client will use for talking to the
-service. But nothing about that prevents an eavesdropper from
-recording the messages sent by the client, establishing a new
-connection, and re-sending or “replaying” the same messages; the
-replayed authenticator will establish the same encryption key for the
-new session, and the following messages will be decrypted and
-processed. The attacker may not know what the messages say, and can’t
-generate new messages under the same encryption key, but in some
-instances it may be harmful to the user (or helpful to the attacker)
-to cause the server to see the same messages again a second time. For
-example, if the legitimate client sends “delete first message in
-mailbox”, a replay from an attacker may delete another, different
-“first” message. (Protocol design to guard against such problems has
-been discussed in <span class="target" id="index-0"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc4120.html#section-10"><strong>RFC 4120#section-10</strong></a>.)</p>
-<p>Even if one protocol uses further protection to verify that the client
-side of the connection actually knows the encryption keys (and thus is
-presumably a legitimate user), if another service uses the same
-service principal name, it may be possible to record an authenticator
-used with the first protocol and “replay” it against the second.</p>
-<p>The replay cache mitigates these attacks somewhat, by keeping track of
-authenticators that have been seen until their five-minute window
-expires. Different authenticators generated by multiple connections
-from the same legitimate client will generally have different
-timestamps, and thus will not be considered the same.</p>
-<p>This mechanism isn’t perfect. If a message is sent to one application
-server but a man-in-the-middle attacker can prevent it from actually
-arriving at that server, the attacker could then use the authenticator
-(once!) against a different service on the same host. This could be a
-problem if the message from the client included something more than
-authentication in the first message that could be useful to the
-attacker (which is uncommon; in most protocols the server has to
-indicate a successful authentication before the client sends
-additional messages), or if the simple act of presenting the
-authenticator triggers some interesting action in the service being
-attacked.</p>
-</section>
-<section id="replay-cache-types">
-<h2>Replay cache types<a class="headerlink" href="#replay-cache-types" title="Link to this heading">¶</a></h2>
-<p>Unlike the credential cache and keytab interfaces, replay cache types
-are in lowercase. The following types are defined:</p>
-<ol class="arabic simple">
-<li><p><strong>none</strong> disables the replay cache. The residual value is ignored.</p></li>
-<li><p><strong>file2</strong> (new in release 1.18) uses a hash-based format to store
-replay records. The file may grow to accommodate hash collisions.
-The residual value is the filename.</p></li>
-<li><p><strong>dfl</strong> is the default type if no environment variable or
-configuration specifies a different type. It stores replay data in
-a file2 replay cache with a filename based on the effective uid.
-The residual value is ignored.</p></li>
-</ol>
-<p>For the dfl type, the location of the replay cache file is determined
-as follows:</p>
-<ol class="arabic simple">
-<li><p>The directory is taken from the <strong>KRB5RCACHEDIR</strong> environment
-variable, or the <strong>TMPDIR</strong> environment variable, or a temporary
-directory determined at configuration time such as <code class="docutils literal notranslate"><span class="pre">/var/tmp</span></code>, in
-descending order of preference.</p></li>
-<li><p>The filename is <code class="docutils literal notranslate"><span class="pre">krb5_EUID.rcache2</span></code> where EUID is the effective
-uid of the process.</p></li>
-<li><p>The file is opened without following symbolic links, and ownership
-of the file is verified to match the effective uid.</p></li>
-</ol>
-<p>On Windows, the directory for the dfl type is the local appdata
-directory, unless overridden by the <strong>KRB5RCACHEDIR</strong> environment
-variable. The filename on Windows is <code class="docutils literal notranslate"><span class="pre">krb5.rcache2</span></code>, and the file
-is opened normally.</p>
-</section>
-<section id="default-replay-cache-name">
-<h2>Default replay cache name<a class="headerlink" href="#default-replay-cache-name" title="Link to this heading">¶</a></h2>
-<p>The default replay cache name is determined by the following, in
-descending order of priority:</p>
-<ol class="arabic simple">
-<li><p>The <strong>KRB5RCACHENAME</strong> environment variable (new in release 1.18).</p></li>
-<li><p>The <strong>KRB5RCACHETYPE</strong> environment variable. If this variable is
-set, the residual value is empty.</p></li>
-<li><p>The <strong>default_rcache_name</strong> profile variable in <a class="reference internal" href="../admin/conf_files/krb5_conf.html#libdefaults"><span class="std std-ref">[libdefaults]</span></a>
-(new in release 1.18).</p></li>
-<li><p>If none of the above are set, the default replay cache name is
-<code class="docutils literal notranslate"><span class="pre">dfl:</span></code>.</p></li>
-</ol>
-</section>
-</section>
-
-
- <div class="clearer"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="sidebar">
-
- <h2>On this page</h2>
- <ul>
-<li><a class="reference internal" href="#">replay cache</a><ul>
-<li><a class="reference internal" href="#background-information">Background information</a></li>
-<li><a class="reference internal" href="#replay-cache-types">Replay cache types</a></li>
-<li><a class="reference internal" href="#default-replay-cache-name">Default replay cache name</a></li>
-</ul>
-</li>
-</ul>
-
- <br/>
- <h2>Table of contents</h2>
- <ul class="current">
-<li class="toctree-l1"><a class="reference internal" href="../user/index.html">For users</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../admin/index.html">For administrators</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../appdev/index.html">For application developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../plugindev/index.html">For plugin module developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build/index.html">Building Kerberos V5</a></li>
-<li class="toctree-l1 current"><a class="reference internal" href="index.html">Kerberos V5 concepts</a><ul class="current">
-<li class="toctree-l2"><a class="reference internal" href="ccache_def.html">Credential cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="keytab_def.html">keytab</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="#">replay cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="stash_file_def.html">stash file</a></li>
-<li class="toctree-l2"><a class="reference internal" href="date_format.html">Supported date and time formats</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="../formats/index.html">Protocols and file formats</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../mitK5features.html">MIT Kerberos features</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build_this.html">How to build this documentation from the source</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../about.html">Contributing to the MIT Kerberos Documentation</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../resources.html">Resources</a></li>
-</ul>
-
- <br/>
- <h4><a href="../index.html">Full Table of Contents</a></h4>
- <h4>Search</h4>
- <form class="search" action="../search.html" method="get">
- <input type="text" name="q" size="18" />
- <input type="submit" value="Go" />
- <input type="hidden" name="check_keywords" value="yes" />
- <input type="hidden" name="area" value="default" />
- </form>
-
- </div>
- <div class="clearer"></div>
- </div>
- </div>
-
- <div class="footer-wrapper">
- <div class="footer" >
- <div class="right" ><i>Release: 1.22-final</i><br />
- &copy; <a href="../copyright.html">Copyright</a> 1985-2025, MIT.
- </div>
- <div class="left">
-
- <a href="../index.html" title="Full Table of Contents"
- >Contents</a> |
- <a href="keytab_def.html" title="keytab"
- >previous</a> |
- <a href="stash_file_def.html" title="stash file"
- >next</a> |
- <a href="../genindex.html" title="General Index"
- >index</a> |
- <a href="../search.html" title="Enter search criteria"
- >Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__replay cache">feedback</a>
- </div>
- </div>
- </div>
-
- </body>
-</html> \ No newline at end of file
diff --git a/crypto/krb5/doc/html/basic/stash_file_def.html b/crypto/krb5/doc/html/basic/stash_file_def.html
deleted file mode 100644
index baeae2d4d49c..000000000000
--- a/crypto/krb5/doc/html/basic/stash_file_def.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<!DOCTYPE html>
-
-<html lang="en" data-content_root="../">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
-
- <title>stash file &#8212; MIT Kerberos Documentation</title>
- <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
- <link rel="stylesheet" type="text/css" href="../_static/agogo.css?v=879f3c71" />
- <link rel="stylesheet" type="text/css" href="../_static/kerb.css?v=6a0b3979" />
- <script src="../_static/documentation_options.js?v=236fef3b"></script>
- <script src="../_static/doctools.js?v=888ff710"></script>
- <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
- <link rel="author" title="About these documents" href="../about.html" />
- <link rel="index" title="Index" href="../genindex.html" />
- <link rel="search" title="Search" href="../search.html" />
- <link rel="copyright" title="Copyright" href="../copyright.html" />
- <link rel="next" title="Supported date and time formats" href="date_format.html" />
- <link rel="prev" title="replay cache" href="rcache_def.html" />
- </head><body>
- <div class="header-wrapper">
- <div class="header">
-
-
- <h1><a href="../index.html">MIT Kerberos Documentation</a></h1>
-
- <div class="rel">
-
- <a href="../index.html" title="Full Table of Contents"
- accesskey="C">Contents</a> |
- <a href="rcache_def.html" title="replay cache"
- accesskey="P">previous</a> |
- <a href="date_format.html" title="Supported date and time formats"
- accesskey="N">next</a> |
- <a href="../genindex.html" title="General Index"
- accesskey="I">index</a> |
- <a href="../search.html" title="Enter search criteria"
- accesskey="S">Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__stash file">feedback</a>
- </div>
- </div>
- </div>
-
- <div class="content-wrapper">
- <div class="content">
- <div class="document">
-
- <div class="documentwrapper">
- <div class="bodywrapper">
- <div class="body" role="main">
-
- <section id="stash-file">
-<span id="stash-definition"></span><h1>stash file<a class="headerlink" href="#stash-file" title="Link to this heading">¶</a></h1>
-<p>The stash file is a local copy of the master key that resides in
-encrypted form on the KDC’s local disk. The stash file is used to
-authenticate the KDC to itself automatically before starting the
-<a class="reference internal" href="../admin/admin_commands/kadmind.html#kadmind-8"><span class="std std-ref">kadmind</span></a> and <a class="reference internal" href="../admin/admin_commands/krb5kdc.html#krb5kdc-8"><span class="std std-ref">krb5kdc</span></a> daemons (e.g., as part of the
-machine’s boot sequence). The stash file, like the keytab file (see
-<a class="reference internal" href="../admin/install_appl_srv.html#keytab-file"><span class="std std-ref">The keytab file</span></a>) is a potential point-of-entry for a break-in, and
-if compromised, would allow unrestricted access to the Kerberos
-database. If you choose to install a stash file, it should be
-readable only by root, and should exist only on the KDC’s local disk.
-The file should not be part of any backup of the machine, unless
-access to the backup data is secured as tightly as access to the
-master password itself.</p>
-<div class="admonition note">
-<p class="admonition-title">Note</p>
-<p>If you choose not to install a stash file, the KDC will prompt you for the master key each time it starts up.
-This means that the KDC will not be able to start automatically, such as after a system reboot.</p>
-</div>
-</section>
-
-
- <div class="clearer"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="sidebar">
-
- <h2>On this page</h2>
- <ul>
-<li><a class="reference internal" href="#">stash file</a></li>
-</ul>
-
- <br/>
- <h2>Table of contents</h2>
- <ul class="current">
-<li class="toctree-l1"><a class="reference internal" href="../user/index.html">For users</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../admin/index.html">For administrators</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../appdev/index.html">For application developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../plugindev/index.html">For plugin module developers</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build/index.html">Building Kerberos V5</a></li>
-<li class="toctree-l1 current"><a class="reference internal" href="index.html">Kerberos V5 concepts</a><ul class="current">
-<li class="toctree-l2"><a class="reference internal" href="ccache_def.html">Credential cache</a></li>
-<li class="toctree-l2"><a class="reference internal" href="keytab_def.html">keytab</a></li>
-<li class="toctree-l2"><a class="reference internal" href="rcache_def.html">replay cache</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="#">stash file</a></li>
-<li class="toctree-l2"><a class="reference internal" href="date_format.html">Supported date and time formats</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="../formats/index.html">Protocols and file formats</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../mitK5features.html">MIT Kerberos features</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../build_this.html">How to build this documentation from the source</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../about.html">Contributing to the MIT Kerberos Documentation</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../resources.html">Resources</a></li>
-</ul>
-
- <br/>
- <h4><a href="../index.html">Full Table of Contents</a></h4>
- <h4>Search</h4>
- <form class="search" action="../search.html" method="get">
- <input type="text" name="q" size="18" />
- <input type="submit" value="Go" />
- <input type="hidden" name="check_keywords" value="yes" />
- <input type="hidden" name="area" value="default" />
- </form>
-
- </div>
- <div class="clearer"></div>
- </div>
- </div>
-
- <div class="footer-wrapper">
- <div class="footer" >
- <div class="right" ><i>Release: 1.22-final</i><br />
- &copy; <a href="../copyright.html">Copyright</a> 1985-2025, MIT.
- </div>
- <div class="left">
-
- <a href="../index.html" title="Full Table of Contents"
- >Contents</a> |
- <a href="rcache_def.html" title="replay cache"
- >previous</a> |
- <a href="date_format.html" title="Supported date and time formats"
- >next</a> |
- <a href="../genindex.html" title="General Index"
- >index</a> |
- <a href="../search.html" title="Enter search criteria"
- >Search</a> |
- <a href="mailto:krb5-bugs@mit.edu?subject=Documentation__stash file">feedback</a>
- </div>
- </div>
- </div>
-
- </body>
-</html> \ No newline at end of file