• 配置
  • 基本用法

    配置

    在使用流明的加密器之前,您应该将文件APP_KEY选项设置.env为32个字符的随机字符串。如果未正确设置此值,则流明加密的所有值将不安全。

    基本用法

    加密值

    您可以使用Crypt外观对值进行加密。所有加密的值均使用OpenSSL和密码进行加密。此外,所有加密值都用消息认证码(MAC)签名,以检测对加密字符串的任何修改。AES-256-CBC
    例如,我们可以使用该encrypt方法对机密进行加密并将其存储在Eloquent模型中
    1. <?php
    2. namespace App\Http\Controllers;
    3. use App\User;
    4. use Illuminate\Http\Request;
    5. use Illuminate\Support\Facades\Crypt;
    6. class UserController extends Controller
    7. {
    8. /**
    9. * Store a secret message for the user.
    10. *
    11. * @param Request $request
    12. * @param int $id
    13. * @return Response
    14. */
    15. public function storeSecret(Request $request, $id)
    16. {
    17. $user = User::findOrFail($id);
    18. $user->fill([
    19. 'secret' => Crypt::encrypt($request->secret)
    20. ])->save();
    21. }
    22. }

    解密值

    当然,您可以使用外观decrypt上的方法解密值Crypt。如果无法正确解密该值(例如,当MAC无效时),将抛出:Illuminate\Contracts\Encryption\DecryptException
    1. use Illuminate\Contracts\Encryption\DecryptException;
    2. try {
    3. $decrypted = Crypt::decrypt($encryptedValue);
    4. } catch (DecryptException $e) {
    5. //
    6. }