Readouble

Laravel 5.0 ハッシュ

イントロダクションIntroduction

LaravelのHashファサードは、保存するパスワードに安全なBcryptハッシュを提供します。Laravelアプリケーションに含まれている、AuthControllerコントローラーを使用していれば、ユーザーから入力された、ハッシュされていないパスワードをBcryptされたパスワードと比較し確認することも面倒を見ます。The Laravel Hash facade provides secure Bcrypt hashing for storing user passwords. If you are using the AuthController controller that is included with your Laravel application, it will be take care of verifying the Bcrypt password against the un-hashed version provided by the user.

同様に、Laravelに初めから用意されているRegistrarサービスは、保存するパスワードに対し、確実にbcrypt関数を呼び出しハッシュ化します。Likewise, the user Registrar service that ships with Laravel makes the proper bcrypt function call to hash stored passwords.

基本的な使用法Basic Usage

Bcryptを使用しパスワードをハッシュHashing A Password Using Bcrypt

$password = Hash::make('secret');

bcryptヘルパも使用できます。You may also use the bcrypt helper function:

$password = bcrypt('secret');

パスワードとハッシュ済み値の比較Verifying A Password Against A Hash

if (Hash::check('secret', $hashedPassword))
{
	// パスワードが一致した…
}

パスワードの再ハッシュが必要か確認Checking If A Password Needs To Be Rehashed

if (Hash::needsRehash($hashed))
{
	$hashed = Hash::make('secret');
}

章選択

Artisan CLI

設定

明暗テーマ
light_mode
dark_mode
brightness_auto システム設定に合わせる
テーマ選択
photo_size_select_actual デフォルト
photo_size_select_actual モノクローム(白黒)
photo_size_select_actual Solarized風
photo_size_select_actual GitHub風(青ベース)
photo_size_select_actual Viva(黄緑ベース)
photo_size_select_actual Happy(紫ベース)
photo_size_select_actual Mint(緑ベース)
コードハイライトテーマ選択

明暗テーマごとに、コードハイライトのテーマを指定できます。

テーマ配色確認
スクリーン表示幅
640px
80%
90%
100%

768px以上の幅があるときのドキュメント部分表示幅です。

インデント
無し
1rem
2rem
3rem
原文確認
原文を全行表示
原文を一行ずつ表示
使用しない

※ 段落末のEボタンへカーソルオンで原文をPopupします。

Diff表示形式
色分けのみで区別
行頭の±で区別
削除線と追記で区別

※ [tl!…]形式の挿入削除行の表示形式です。

Pagination和文
ペジネーション
ペギネーション
ページネーション
ページ付け
Scaffold和文
スカフォールド
スキャフォールド
型枠生成
本文フォント

総称名以外はCSSと同様に、"〜"でエスケープしてください。

コードフォント

総称名以外はCSSと同様に、"〜"でエスケープしてください。

保存内容リセット

localStrageに保存してある設定項目をすべて削除し、デフォルト状態へ戻します。

ヘッダー項目移動

キーボード操作