diff options
Diffstat (limited to '')
-rw-r--r-- | docs/manual/programs/htdbm.html | 2 | ||||
-rw-r--r-- | docs/manual/programs/htdbm.html.en | 40 | ||||
-rw-r--r-- | docs/manual/programs/htdbm.html.fr.utf8 | 32 | ||||
-rw-r--r-- | docs/manual/programs/htdbm.html.tr.utf8 | 7 |
4 files changed, 41 insertions, 40 deletions
diff --git a/docs/manual/programs/htdbm.html b/docs/manual/programs/htdbm.html index cc72428..a470dca 100644 --- a/docs/manual/programs/htdbm.html +++ b/docs/manual/programs/htdbm.html @@ -2,7 +2,7 @@ URI: htdbm.html.en Content-Language: en -Content-type: text/html; charset=ISO-8859-1 +Content-type: text/html; charset=UTF-8 URI: htdbm.html.fr.utf8 Content-Language: fr diff --git a/docs/manual/programs/htdbm.html.en b/docs/manual/programs/htdbm.html.en index 0bdf885..5eb9e5c 100644 --- a/docs/manual/programs/htdbm.html.en +++ b/docs/manual/programs/htdbm.html.en @@ -1,7 +1,7 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> +<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head> -<meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type" /> +<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /> <!-- XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX This file is generated from xml source: DO NOT EDIT @@ -24,8 +24,8 @@ <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs/">Documentation</a> > <a href="../">Version 2.4</a> > <a href="./">Programs</a></div><div id="page-content"><div id="preamble"><h1>htdbm - Manipulate DBM password databases</h1> <div class="toplang"> <p><span>Available Languages: </span><a href="../en/programs/htdbm.html" title="English"> en </a> | -<a href="../fr/programs/htdbm.html" hreflang="fr" rel="alternate" title="Français"> fr </a> | -<a href="../tr/programs/htdbm.html" hreflang="tr" rel="alternate" title="Türkçe"> tr </a></p> +<a href="../fr/programs/htdbm.html" hreflang="fr" rel="alternate" title="Français"> fr </a> | +<a href="../tr/programs/htdbm.html" hreflang="tr" rel="alternate" title="Türkçe"> tr </a></p> </div> <p><code>htdbm</code> is used to manipulate the DBM format files used to @@ -155,27 +155,27 @@ cannot be combined with the <code>-c</code> option.</dd> <dt><code>-m</code></dt> - <dd>Use MD5 encryption for passwords. On Windows and Netware, this is + <dd>Use MD5 hashing for passwords. On Windows and Netware, this is the default.</dd> <dt><code>-B</code></dt> - <dd>Use bcrypt encryption for passwords. This is currently considered to + <dd>Use bcrypt hashing for passwords. This is currently considered to be very secure.</dd> <dt><code>-C</code></dt> <dd>This flag is only allowed in combination with <code>-B</code> (bcrypt - encryption). It sets the computing time used for the bcrypt algorithm + hashing). It sets the computing time used for the bcrypt algorithm (higher is more secure but slower, default: 5, valid: 4 to 31).</dd> <dt><code>-d</code></dt> - <dd>Use <code>crypt()</code> encryption for passwords. The default on all + <dd>Use <code>crypt()</code> hashing for passwords. The default on all platforms but Windows and Netware. Though possibly supported by <code>htdbm</code> on all platforms, it is not supported by the <code class="program"><a href="../programs/httpd.html">httpd</a></code> server on Windows and Netware. This algorithm is <strong>insecure</strong> by today's standards.</dd> <dt><code>-s</code></dt> - <dd>Use SHA encryption for passwords. Facilitates migration from/to Netscape + <dd>Use SHA hashing for passwords. Facilitates migration from/to Netscape servers using the LDAP Directory Interchange Format (ldif). This algorithm is <strong>insecure</strong> by today's standards.</dd> @@ -215,7 +215,7 @@ does exist, the password is changed.</dd> <dt><code><var>password</var></code></dt> - <dd>The plaintext password to be encrypted and stored in the DBM file. + <dd>The plaintext password to be hashed and stored in the DBM file. Used only with the <code>-b</code> flag.</dd> <dt><code>-T<var>DBTYPE</var></code></dt> @@ -261,7 +261,7 @@ <p>Adds or modifies the password for user <code>jsmith</code>. The user is prompted for the password. If executed on a Windows system, the password - will be encrypted using the modified Apache MD5 algorithm; otherwise, the + will be hashed using the modified Apache MD5 algorithm; otherwise, the system's <code>crypt()</code> routine will be used. If the file does not exist, <code>htdbm</code> will do nothing except return an error.</p> @@ -288,14 +288,14 @@ not be fetchable with a browser.</p> <p>The use of the <code>-b</code> option is discouraged, since when it is - used the unencrypted password appears on the command line.</p> + used the plaintext password appears on the command line.</p> <p>When using the <code>crypt()</code> algorithm, note that only the first 8 characters of the password are used to form the password. If the supplied password is longer, the extra characters will be silently discarded.</p> - <p>The SHA encryption format does not use salting: for a given password, - there is only one encrypted representation. The <code>crypt()</code> and + <p>The SHA hashing option does not use salting: for a given password, + there is only one hashed representation. The <code>crypt()</code> and MD5 formats permute the representation by prepending a random salt string, to make dictionary attacks against the passwords more difficult.</p> @@ -304,13 +304,13 @@ </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> <div class="section"> <h2><a name="restrictions" id="restrictions">Restrictions</a></h2> - <p>On the Windows platform, passwords encrypted with + <p>On the Windows platform, passwords hashed with <code>htdbm</code> are limited to no more than <code>255</code> characters in length. Longer passwords will be truncated to 255 characters.</p> <p>The MD5 algorithm used by <code>htdbm</code> is specific to the Apache - software; passwords encrypted using it will not be usable with other Web + software; passwords hashed using it will not be usable with other Web servers.</p> <p>Usernames are limited to <code>255</code> bytes and may not include the @@ -318,9 +318,9 @@ </div></div> <div class="bottomlang"> <p><span>Available Languages: </span><a href="../en/programs/htdbm.html" title="English"> en </a> | -<a href="../fr/programs/htdbm.html" hreflang="fr" rel="alternate" title="Français"> fr </a> | -<a href="../tr/programs/htdbm.html" hreflang="tr" rel="alternate" title="Türkçe"> tr </a></p> -</div><div class="top"><a href="#page-header"><img src="../images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Comments</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our <a href="http://httpd.apache.org/lists.html">mailing lists</a>.</div> +<a href="../fr/programs/htdbm.html" hreflang="fr" rel="alternate" title="Français"> fr </a> | +<a href="../tr/programs/htdbm.html" hreflang="tr" rel="alternate" title="Türkçe"> tr </a></p> +</div><div class="top"><a href="#page-header"><img src="../images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Comments</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Libera.chat, or sent to our <a href="https://httpd.apache.org/lists.html">mailing lists</a>.</div> <script type="text/javascript"><!--//--><![CDATA[//><!-- var comments_shortname = 'httpd'; var comments_identifier = 'http://httpd.apache.org/docs/2.4/programs/htdbm.html'; @@ -338,7 +338,7 @@ var comments_identifier = 'http://httpd.apache.org/docs/2.4/programs/htdbm.html' } })(window, document); //--><!]]></script></div><div id="footer"> -<p class="apache">Copyright 2019 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> +<p class="apache">Copyright 2024 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!-- if (typeof(prettyPrint) !== 'undefined') { prettyPrint(); diff --git a/docs/manual/programs/htdbm.html.fr.utf8 b/docs/manual/programs/htdbm.html.fr.utf8 index 6c18e5a..1b53ea0 100644 --- a/docs/manual/programs/htdbm.html.fr.utf8 +++ b/docs/manual/programs/htdbm.html.fr.utf8 @@ -164,16 +164,16 @@ passe</h1> l'option <code>-c</code>.</dd> <dt><code>-m</code></dt> - <dd>Utilise un chiffrement MD5 pour les mots de passe. Sous Windows + <dd>Utilise un hachage MD5 pour les mots de passe. Sous Windows et Netware, c'est l'option par défaut..</dd> <dt><code>-B</code></dt> - <dd>Utilise l'algorythme de chiffrement bcrypt pour les mots de + <dd>Utilise l'algorythme de hachage bcrypt pour les mots de passe. C'est un algorythme actuellement considéré comme sûr.</dd> <dt><code>-C</code></dt> <dd>Ce drapeau n'est autorisé qu'en conjonction avec le drapeau - <code>-B</code> (chiffrement bcrypt). Il permet de définir la durée + <code>-B</code> (hachage bcrypt). Il permet de définir la durée de traitement pour l'algorythme de chiffrement bcrypt (plus elle est longue, plus la sécurité est élevée, mais la rapidité est diminuée d'autant) ; la valeur par défaut est 5, les valeurs valides vont de @@ -181,7 +181,7 @@ passe</h1> <dt><code>-d</code></dt> - <dd>Utilise un chiffrement <code>crypt()</code> pour les mots de + <dd>Utilise un hachage <code>crypt()</code> pour les mots de passe. C'est l'option par défaut sur toutes les plates-formes, sauf Windows et Netware. Bien que <code>htdbm</code> supporte ce chiffrement sur toutes les plates-formes, il n'est pas supporté par @@ -190,7 +190,7 @@ passe</h1> standards actuels.</dd> <dt><code>-s</code></dt> - <dd>Utilise le chiffrement SHA pour les mots de passe. Facilite la + <dd>Utilise le hachage SHA pour les mots de passe. Facilite la migration vers/depuis les serveurs Netscape qui utilisent le format LDAP Directory Interchange (ldif). Cet algorythme est considéré comme <strong>non sûr</strong> selon les @@ -236,7 +236,7 @@ passe</h1> son mot de passe est modifié.</dd> <dt><code><var>mot-de-passe</var></code></dt> - <dd>Le mot de passe en clair destiné à être chiffré et stocké dans + <dd>Le mot de passe en clair destiné à être haché et stocké dans le fichier DBM. Ne s'utilise qu'avec l'option <code>-b</code>.</dd> <dt><code>-T<var>DBTYPE</var></code></dt> @@ -287,7 +287,7 @@ passe</h1> <p>Ajoute ou modifie le mot de passe de l'utilisateur <code>jsmith</code>. Le mot de passe est demandé à l'opérateur. Sous - Windows, le mot de passe sera chiffré en utilisant l'algorithme MD5 + Windows, le mot de passe sera haché en utilisant l'algorithme MD5 Apache modifié ; dans les autres cas, c'est la routine <code>crypt()</code> du système qui sera utilisée. Si le fichier n'existe pas, <code>htdbm</code> s'arrêtera et renverra une @@ -320,7 +320,7 @@ passe</h1> être possible d'y accéder à l'aide d'un navigateur.</p> <p>L'utilisation de l'option <code>-b</code> est déconseillée, car - lorsqu'il est utilisé, le mot de passe apparaît en clair dans la + lorsqu'il est utilisé, le mot de passe apparaît en clair sur la ligne de commande.</p> <p>Notez que lorsque vous utilisez l'algorythme @@ -328,11 +328,11 @@ passe</h1> passe sont pris en compte. Si le mot de passe fourni est plus long, les caractères supplémentaires seront ignorés sans avertissement.</p> - <p>L'algorythme SHA ne permet pas de spécifier une valeur + <p>L'algorythme de hachage SHA ne permet pas de spécifier une valeur d'initialisation pour la génération de nombres aléatoires (salting) - : un mot de passe donné ne possède ainsi qu'une réprésentation - chiffrée. Les algorythmes <code>crypt()</code> et MD5 permettent quant à - eux des représentations chiffrées multiples en acceptant comme + : un mot de passe donné ne possède ainsi qu'une seule représentation + hachée. Les algorythmes <code>crypt()</code> et MD5 permettent quant à + eux des représentations hachées multiples en acceptant comme paramètre une chaîne d'initialisation (salt), rendant les attaques à base de dictionnaires contre les mots de passe plus difficiles.</p> @@ -341,13 +341,13 @@ passe</h1> </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> <div class="section"> <h2><a name="restrictions" id="restrictions">Restrictions</a></h2> - <p>Sur la plate-forme Windows, les mots de passe chiffrés avec + <p>Sur la plate-forme Windows, les mots de passe hachés avec <code>htdbm</code> ont une taille limitée à <code>255</code> caractères. Si le mot de passe fourni est plus long, il sera tronqué à 255 caractères.</p> <p>L'algorithme MD5 utilisé par <code>htdbm</code> est spécifique à - Apache ; les mots de passe chiffrés en utilisant cet algorithme + Apache ; les mots de passe hachés en utilisant cet algorithme seront inutilisables sur d'autres serveurs Web.</p> <p>Les noms d'utilisateurs ont une taille limitée à <code>255</code> @@ -357,7 +357,7 @@ passe</h1> <p><span>Langues Disponibles: </span><a href="../en/programs/htdbm.html" hreflang="en" rel="alternate" title="English"> en </a> | <a href="../fr/programs/htdbm.html" title="Français"> fr </a> | <a href="../tr/programs/htdbm.html" hreflang="tr" rel="alternate" title="Türkçe"> tr </a></p> -</div><div class="top"><a href="#page-header"><img src="../images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Commentaires</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our <a href="http://httpd.apache.org/lists.html">mailing lists</a>.</div> +</div><div class="top"><a href="#page-header"><img src="../images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Commentaires</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Libera.chat, or sent to our <a href="https://httpd.apache.org/lists.html">mailing lists</a>.</div> <script type="text/javascript"><!--//--><![CDATA[//><!-- var comments_shortname = 'httpd'; var comments_identifier = 'http://httpd.apache.org/docs/2.4/programs/htdbm.html'; @@ -375,7 +375,7 @@ var comments_identifier = 'http://httpd.apache.org/docs/2.4/programs/htdbm.html' } })(window, document); //--><!]]></script></div><div id="footer"> -<p class="apache">Copyright 2019 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> +<p class="apache">Copyright 2024 The Apache Software Foundation.<br />Autorisé sous <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossaire</a> | <a href="../sitemap.html">Plan du site</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!-- if (typeof(prettyPrint) !== 'undefined') { prettyPrint(); diff --git a/docs/manual/programs/htdbm.html.tr.utf8 b/docs/manual/programs/htdbm.html.tr.utf8 index 8d23b17..a907b7b 100644 --- a/docs/manual/programs/htdbm.html.tr.utf8 +++ b/docs/manual/programs/htdbm.html.tr.utf8 @@ -27,6 +27,7 @@ <a href="../fr/programs/htdbm.html" hreflang="fr" rel="alternate" title="Français"> fr </a> | <a href="../tr/programs/htdbm.html" title="Türkçe"> tr </a></p> </div> +<div class="outofdate">Bu çeviri güncel olmayabilir. Son deÄŸiÅŸiklikler için Ä°ngilizce sürüm geçerlidir.</div> <p><code><strong>htdbm</strong></code>, <code class="module"><a href="../mod/mod_authn_dbm.html">mod_authn_dbm</a></code> üzerinden HTTP kullanıcılarının temel @@ -42,7 +43,7 @@ <li><img alt="" src="../images/down.gif" /> <a href="#examples">Örnekler</a></li> <li><img alt="" src="../images/down.gif" /> <a href="#security">Güvenlik DeÄŸerlendirmeleri</a></li> <li><img alt="" src="../images/down.gif" /> <a href="#restrictions">Kısıtlamalar</a></li> -</ul><h3>Ayrıca bakınız:</h3><ul class="seealso"><li><code class="program"><a href="../programs/httpd.html">httpd</a></code></li><li><code class="program"><a href="../programs/dbmmanage.html">dbmmanage</a></code></li><li><code class="module"><a href="../mod/mod_authn_dbm.html">mod_authn_dbm</a></code></li><li><a href="#comments_section">Yorum</a></li></ul></div> +</ul><h3>Ayrıca bakınız:</h3><ul class="seealso"><li><code class="program"><a href="../programs/httpd.html">httpd</a></code></li><li><code class="program"><a href="../programs/dbmmanage.html">dbmmanage</a></code></li><li><code class="module"><a href="../mod/mod_authn_dbm.html">mod_authn_dbm</a></code></li><li><a href="#comments_section">Yorumlar</a></li></ul></div> <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> <div class="section"> <h2><a name="synopsis" id="synopsis">Kullanım</a></h2> @@ -332,7 +333,7 @@ <p><span>Mevcut Diller: </span><a href="../en/programs/htdbm.html" hreflang="en" rel="alternate" title="English"> en </a> | <a href="../fr/programs/htdbm.html" hreflang="fr" rel="alternate" title="Français"> fr </a> | <a href="../tr/programs/htdbm.html" title="Türkçe"> tr </a></p> -</div><div class="top"><a href="#page-header"><img src="../images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Yorum</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our <a href="http://httpd.apache.org/lists.html">mailing lists</a>.</div> +</div><div class="top"><a href="#page-header"><img src="../images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Yorumlar</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Libera.chat, or sent to our <a href="https://httpd.apache.org/lists.html">mailing lists</a>.</div> <script type="text/javascript"><!--//--><![CDATA[//><!-- var comments_shortname = 'httpd'; var comments_identifier = 'http://httpd.apache.org/docs/2.4/programs/htdbm.html'; @@ -350,7 +351,7 @@ var comments_identifier = 'http://httpd.apache.org/docs/2.4/programs/htdbm.html' } })(window, document); //--><!]]></script></div><div id="footer"> -<p class="apache">Copyright 2019 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p> +<p class="apache">Copyright 2024 The Apache Software Foundation.<br /><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> altında lisanslıdır.</p> <p class="menu"><a href="../mod/">Modüller</a> | <a href="../mod/directives.html">Yönergeler</a> | <a href="http://wiki.apache.org/httpd/FAQ">SSS</a> | <a href="../glossary.html">Terimler</a> | <a href="../sitemap.html">Site Haritası</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!-- if (typeof(prettyPrint) !== 'undefined') { prettyPrint(); |