Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions reference/password/setup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,22 @@
&reftitle.required;
&no.requirement;
<para>
For Argon2 password hashing, <link xlink:href="&url.libargon2;">libargon2</link>
is required, though. As of PHP 7.3.0, libargon2 version 20161029 or later is
required.
For Argon2 password hashing, either
<link xlink:href="&url.libargon2;">libargon2</link> is required or, as of
PHP 8.4.0, OpenSSL version 3.2 or later. As of PHP 7.3.0, libargon2 version
20161029 or later is required if libargon2 is used.
</para>
</section>

<section xml:id="password.installation">
&reftitle.install;
&no.install;
<para>
To enable Argon2 password hashing, however, PHP must be built with libargon2
support using the <option role="configure">--with-password-argon2</option>
configure option.
However, to enable Argon2 password hashing, PHP must be built either with
libargon2 support using the
<option role="configure">--with-password-argon2</option> configure option
or, starting from PHP 8.4.0, with OpenSSL using
<option role="configure">--with-openssl</option>.
</para>
<para>
Prior to PHP 8.1.0, it was possible to specify the argon2 directory with
Expand Down
Loading