Skip to content

Document argon2 installation with OpenSSL in PHP 8.4 を取り込み #249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 19, 2025
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
16 changes: 10 additions & 6 deletions reference/password/setup.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: takagi Status: ready -->
<!-- EN-Revision: 39b10b2e994f5a39f5face56c5e86ea8507a45a3 Maintainer: takagi Status: ready -->

<chapter xml:id="password.setup" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup;
Expand All @@ -9,19 +9,23 @@
&reftitle.required;
&no.requirement;
<para>
ただし、Argon2 パスワードハッシュの場合、<link
xlink:href="&url.libargon2;">libargon2</link> が必要です。
PHP 7.3.0 以降では、libargon2 バージョン 20161029 以降が必要です。
Argon2 パスワードハッシュには、
<link xlink:href="&url.libargon2;">libargon2</link> が必要です。
PHP 8.4.0 以降では、libargon2 の代わりに OpenSSL のバージョン 3.2 以降を使うこともできます。
libargon2 を使う場合、PHP 7.3.0 以降では libargon2 バージョン 20161029 以降が必要になります。
</para>
</section>

<section xml:id="password.installation">
&reftitle.install;
&no.install;
<para>
ただし、Argon2 パスワードハッシュを有効にするには、<option
role="configure">--with-password-argon2</option> オプションを使用して、
ただし、Argon2 パスワードハッシュを有効にするには、
<option role="configure">--with-password-argon2</option> オプションを使用し
libargon2 のサポートを有効にして PHP をビルドする必要があります。
PHP 8.4.0 以降で libargon2 の代わりに OpenSSL を使う場合、
<option role="configure">--with-openssl</option> オプションを使用し
OpenSSL を有効にして PHP をビルドする必要があります。
</para>
<para>
PHP 8.1.0 より前のバージョンでは、
Expand Down