Home > Backend Development > PHP Tutorial > [ Laravel 5.2 文档 ] 服务 -- 加密

[ Laravel 5.2 文档 ] 服务 -- 加密

WBOY
Release: 2016-06-23 13:17:13
Original
998 people have browsed it

1、配置

在使用Laravel的加密器之前,应该在配置文件 config/app.php中设置 key选项为32位随机字符串。如果这个值没有被设置,所有Laravel加密过的值都是不安全的。

2、基本使用

2.1 加密

你可以使用 Crypt门面对数据进行加密,所有加密值都使用OpenSSL和 AES-256-CBC密码进行加密。此外,所有加密值都通过一个消息认证码(MAC)来检测对加密字符串的任何修改。

例如,我们可以使用 encrypt方法加密 secret属性并将其存储到Eloquent模型:

<?phpnamespace App\Http\Controllers;use Crypt;use App\User;use Illuminate\Http\Request;use App\Http\Controllers\Controller;class UserController extends Controller{    /**     * Store a secret message for the user.     *     * @param  Request  $request     * @param  int  $id     * @return Response     */    public function storeSecret(Request $request, $id)    {        $user = User::findOrFail($id);        $user->fill([            'secret' => Crypt::encrypt($request->secret)        ])->save();    }}
Copy after login

2.2 解密

当然,你可以使用 Crypt门面上的 decrypt方法进行解密。如果该值不能被解密,例如MAC无效,将会抛出一个 Illuminate\Contracts\Encryption\DecryptException异常:

use Illuminate\Contracts\Encryption\DecryptException;try {    $decrypted = Crypt::decrypt($encryptedValue);} catch (DecryptException $e) {    //}
Copy after login
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template