イントロダクションIntroduction
LaravelのHash
ファサードは、ユーザーパスワードを保存するための安全なBcryptおよびArgon2ハッシュを提供します。Laravelアプリケーションスターターキットのいずれかを使用している場合、デフォルトで登録と認証にBcryptが使用されます。The Laravel Hash
facade[/docs/{{version}}/facades] provides
secure Bcrypt and Argon2 hashing for storing user
passwords. If you are using one of the Laravel
application starter
kits[/docs/{{version}}/starter-kits], Bcrypt
will be used for registration and authentication by
default.
Bcryptは、その「作業係数」が調整可能であるため、パスワードのハッシュに最適です。つまり、ハードウェアの能力が上がると、ハッシュの生成にかかる時間が長くなる可能性があります。パスワードをハッシュする場合は、遅いのが利点です。アルゴリズムがパスワードをハッシュするのに時間がかかるほど、悪意のあるユーザーがアプリケーションに対するブルートフォース攻撃で使用される可能性のあるすべての文字列ハッシュ値の「レインボーテーブル」を生成するのにかかる時間が長くなります。Bcrypt is a great choice for hashing passwords because its "work factor" is adjustable, which means that the time it takes to generate a hash can be increased as hardware power increases. When hashing passwords, slow is good. The longer an algorithm takes to hash a password, the longer it takes malicious users to generate "rainbow tables" of all possible string hash values that may be used in brute force attacks against applications.
設定Configuration
Laravelはデフォルトで、データのハッシュ化にbcrypt
ハッシュドライバを使用します。しかし、argon
やargon2id
など、他のハッシュドライバもサポートしています。By default, Laravel uses the
bcrypt
hashing driver when hashing
data. However, several other hashing drivers are
supported, including
argon
[https://en.wikipedia.org/wiki/Argon2]
and
argon2id
[https://en.wikipedia.org/wiki/Argon2].
HASH_DRIVER
環境変数を浸かり、アプリケーションのハッシュドライバを指定できます。しかし、Laravelのハッシュドライバオプションをすべてカスタマイズしたい場合は、config:publish
Artisanコマンドを使用して、完全なhashing
設定ファイルをリソース公開する必要があります。You may specify your
application's hashing driver using the
HASH_DRIVER
environment variable. But,
if you want to customize all of Laravel's hashing
driver options, you should publish the complete
hashing
configuration file using the
config:publish
Artisan
command:
php artisan config:publish hashing
基本的な使用法Basic Usage
パスワードのハッシュHashing Passwords
Hash
ファサードでmake
メソッドを呼び出すことにより、パスワードをハッシュすることができます。You may hash a password by
calling the make
method on the
Hash
facade:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Hash;
class PasswordController extends Controller
{
/**
* ユーザーのパスワードを更新
*/
public function update(Request $request): RedirectResponse
{
// 新しいパスワードの長さをバリデート…
$request->user()->fill([
'password' => Hash::make($request->newPassword)
])->save();
return redirect('/profile');
}
}
Bcryptの作業係数の調整Adjusting The Bcrypt Work Factor
Bcryptアルゴリズムを使用している場合、make
メソッドを使用すると、rounds
オプションを使用してアルゴリズムの作業係数を管理できます。ただし、Laravelが管理するデフォルトの作業係数は、ほとんどのアプリケーションで適切でしょう。If you are using the Bcrypt
algorithm, the make
method allows you
to manage the work factor of the algorithm using the
rounds
option; however, the default
work factor managed by Laravel is acceptable for
most applications:
$hashed = Hash::make('password', [
'rounds' => 12,
]);
Argon2作業係数の調整Adjusting The Argon2 Work Factor
Argon2アルゴリズムを使用している場合、make
メソッドを使用すると、memory
、time
、threads
オプションを使用してアルゴリズムの作業要素を管理できます。ただし、Laravelが管理するデフォルト値は、ほとんどのアプリケーションで適切でしょう。If you are using the Argon2
algorithm, the make
method allows you
to manage the work factor of the algorithm using the
memory
, time
, and
threads
options; however, the default
values managed by Laravel are acceptable for most
applications:
$hashed = Hash::make('password', [
'memory' => 1024,
'time' => 2,
'threads' => 2,
]);
Argonハッシュに関するPHP公式ドキュメントを参照してください。[!NOTE]
Note: これらのオプションの詳細には、
For more information on these options, please refer to the official PHP documentation regarding Argon hashing[https://secure.php.net/manual/en/function.password-hash.php].
パスワードがハッシュと一致するかの確認Verifying That a Password Matches a Hash
Hash
ファサードが提供するcheck
メソッドを使用すると、指定するプレーンテキスト文字列が指定するハッシュに対応することを確認できます。The check
method
provided by the Hash
facade allows you
to verify that a given plain-text string corresponds
to a given hash:
if (Hash::check('plain-text', $hashedPassword)) {
// パスワードが一致
}
パスワードを再ハッシュする必要があるかの判断Determining if a Password Needs to be Rehashed
Hash
ファサードが提供するneedsRehash
メソッドを使用すると、パスワードがハッシュされてから、ハッシャーによって使用される作業要素が変更されたかどうかを判別できます。一部のアプリケーションは、アプリケーションの認証プロセス中にこのチェックを実行することを選択しています。The needsRehash
method provided by the Hash
facade
allows you to determine if the work factor used by
the hasher has changed since the password was
hashed. Some applications choose to perform this
check during the application's authentication
process:
if (Hash::needsRehash($hashed)) {
$hashed = Hash::make('plain-text');
}