svn: /phpdoc/de/trunk/ install/unix/lighttpd-14.xml reference/password/functions/password-hash.xml reference/sqlite3/setup.xml reference/sqlite3/sqlite3/createfunction.xml

[email protected] (Christoph Michael Becker)
Newsgroups php.doc.de
Message-ID <[email protected]>
cmb                                      Mon, 03 Dec 2018 15:31:53 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=346153

Log:
Sync with EN

Changed paths:
    U   phpdoc/de/trunk/install/unix/lighttpd-14.xml
    U   phpdoc/de/trunk/reference/password/functions/password-hash.xml
    U   phpdoc/de/trunk/reference/sqlite3/setup.xml
    U   phpdoc/de/trunk/reference/sqlite3/sqlite3/createfunction.xml

Modified: phpdoc/de/trunk/install/unix/lighttpd-14.xml
===================================================================
--- phpdoc/de/trunk/install/unix/lighttpd-14.xml	2018-12-03 15:27:09 UTC (rev 346152)
+++ phpdoc/de/trunk/install/unix/lighttpd-14.xml	2018-12-03 15:31:53 UTC (rev 346153)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 346148 Maintainer: nobody Status: ready -->
 <!-- Reviewed: no -->

 <sect1 xml:id="install.unix.lighttpd-14" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">

Modified: phpdoc/de/trunk/reference/password/functions/password-hash.xml
===================================================================
--- phpdoc/de/trunk/reference/password/functions/password-hash.xml	2018-12-03 15:27:09 UTC (rev 346152)
+++ phpdoc/de/trunk/reference/password/functions/password-hash.xml	2018-12-03 15:31:53 UTC (rev 346153)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 345776 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 346125 Maintainer: nobody Status: ready -->
 <!-- Reviewed: no -->

 <refentry xml:id="function.password-hash" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -43,9 +43,15 @@
     <listitem>
      <simpara>
       <constant>PASSWORD_ARGON2I</constant> - Use the Argon2i hashing algorithm to create the hash.
-      This algorithm is only available if PHP has been compiled with Argon2i support.
+      This algorithm is only available if PHP has been compiled with Argon2 support.
      </simpara>
     </listitem>
+    <listitem>
+     <simpara>
+      <constant>PASSWORD_ARGON2ID</constant> - Use the Argon2id hashing algorithm to create the hash.
+      This algorithm is only available if PHP has been compiled with Argon2 support.
+     </simpara>
+    </listitem>
    </itemizedlist>
   </para>
   <simpara>
@@ -83,7 +89,8 @@
      </itemizedlist>
   </para>
   <simpara>
-   Supported options for <constant>PASSWORD_ARGON2I</constant>:
+   Supported options for <constant>PASSWORD_ARGON2I</constant>
+   and <constant>PASSWORD_ARGON2ID</constant>:
   </simpara>
   <para>
    <itemizedlist>
@@ -255,11 +262,11 @@
   </para>
   <para>
    <example>
-    <title><function>password_hash</function> example using Argon2</title>
+    <title><function>password_hash</function> example using Argon2i</title>
     <programlisting role="php">
 <![CDATA[
 <?php
-echo 'Argon2 hash: ' . password_hash('rasmuslerdorf', PASSWORD_ARGON2I);
+echo 'Argon2i hash: ' . password_hash('rasmuslerdorf', PASSWORD_ARGON2I);
 ?>
 ]]>
     </programlisting>
@@ -266,7 +273,7 @@
     &example.outputs.similar;
     <screen>
 <![CDATA[
-Argon2 hash: $argon2i$v=19$m=1024,t=2,p=2$YzJBSzV4TUhkMzc3d3laeg$zqU/1IN0/AogfP4cmSJI1vc8lpXRW9/S0sYY2i2jHT0
+Argon2i hash: $argon2i$v=19$m=1024,t=2,p=2$YzJBSzV4TUhkMzc3d3laeg$zqU/1IN0/AogfP4cmSJI1vc8lpXRW9/S0sYY2i2jHT0
 ]]>
     </screen>
    </example>
@@ -332,9 +339,15 @@
      </thead>
      <tbody>
       <row>
+       <entry>7.3.0</entry>
+       <entry>
+        Support for Argon2id passwords using <constant>PASSWORD_ARGON2ID</constant> was added.
+       </entry>
+      </row>
+      <row>
        <entry>7.2.0</entry>
        <entry>
-        Support for Argon2 passwords using <constant>PASSWORD_ARGON2I</constant> was added.
+        Support for Argon2i passwords using <constant>PASSWORD_ARGON2I</constant> was added.
        </entry>
       </row>
      </tbody>

Modified: phpdoc/de/trunk/reference/sqlite3/setup.xml
===================================================================
--- phpdoc/de/trunk/reference/sqlite3/setup.xml	2018-12-03 15:27:09 UTC (rev 346152)
+++ phpdoc/de/trunk/reference/sqlite3/setup.xml	2018-12-03 15:31:53 UTC (rev 346153)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 345812 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 346126 Maintainer: nobody Status: ready -->

 <chapter xml:id="sqlite3.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  &reftitle.setup;
@@ -8,7 +8,7 @@
  <section xml:id="sqlite3.requirements">
   &reftitle.required;
   <para>
-   Von PHP 7.4.0 an wird <link xlink:href="&url.sqlite;">libsqlite</link> ≥ 3.5.0 benötigt.
+   Von PHP 7.4.0 an wird <link xlink:href="&url.sqlite;">libsqlite</link> ≥ 3.7.4 benötigt.
    Zuvor konnte statt dessen das gebündelte libsqlite verwendet werden.
   </para>
  </section>

Modified: phpdoc/de/trunk/reference/sqlite3/sqlite3/createfunction.xml
===================================================================
--- phpdoc/de/trunk/reference/sqlite3/sqlite3/createfunction.xml	2018-12-03 15:27:09 UTC (rev 346152)
+++ phpdoc/de/trunk/reference/sqlite3/sqlite3/createfunction.xml	2018-12-03 15:31:53 UTC (rev 346153)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 344878 Maintainer: lapistano Status: ready -->
+<!-- EN-Revision: 345679 Maintainer: lapistano Status: ready -->

 <refentry xml:id="sqlite3.createfunction" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -42,6 +42,32 @@
        Der Name der PHP- oder benutzerdefinierten Funktion, welche als Callback-Funktion agieren soll
        und das Verhalten der SQL-Funktion definiert.
       </para>
+      <para>
+       Diese Funktion muss wie folgt definiert werden:
+       <methodsynopsis>
+        <type>mixed</type><methodname><replaceable>callback</replaceable></methodname>
+        <methodparam><type>mixed</type><parameter>value1</parameter></methodparam>
+        <methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
+       </methodsynopsis>
+       <variablelist>
+        <varlistentry>
+         <term><parameter>value1</parameter></term>
+         <listitem>
+          <para>
+           Das erste Argument, dass an die SQL-Funktion übergeben wurde.
+          </para>
+         </listitem>
+        </varlistentry>
+        <varlistentry>
+         <term><parameter>...</parameter></term>
+         <listitem>
+          <para>
+           Weitere Argumente, die an die SQL-Funktion übergeben wurden.
+          </para>
+         </listitem>
+        </varlistentry>
+       </variablelist>
+      </para>
      </listitem>
     </varlistentry>
     <varlistentry>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.