LARAVEL Payload is invalid 错误但解密数据是正确的

180*_*man 4 php encryption payload mutators laravel

最近我用作曲家做了一个新项目,并用 make:auth 添加了非常基本的身份验证 - 没什么特别的。

接下来我想加密我的数据库中的nameemail列,所以我将它们的类型从 VARCHAR(191) 更改为 LONGTEXT 并向用户模型添加了一些非常基本的修改器

public function setNameAttribute($value) {
    $this->attributes['name'] = Crypt::encryptString($value);
}

public function getNameAttribute($value) {
    return Crypt::decryptString($value);
}

public function setEmailAttribute($value) {
    $this->attributes['email'] = Crypt::encryptString($value);
}

public function getEmailAttribute($value) {
    return Crypt::decryptString($value);
}
Run Code Online (Sandbox Code Playgroud)

但是,当我使用我的非常简单的路线进行测试时,即使我在错误内容中看到字段已被正确解密,我也会收到有效载荷无效错误。

Route::get('user',function(){
$user= \App\User::find(3);
//dd($user->name);
dd(Crypt::decryptString($user->name));
dd(Crypt::decryptString($user->email));
Run Code Online (Sandbox Code Playgroud)

});

截图链接 https://ibb.co/deBPpR

Sap*_*aik 11

错误是因为您正在调用Crypt::decryptString一个已经变异(和解密)的 name 属性。即你getNameAttribute解密加密的字符串,当你打电话

Crypt::decryptString($user->name); // this is causing the error
Run Code Online (Sandbox Code Playgroud)

您基本上可以再次传递解密的字符串进行解密。

做就是了:

echo $user->name;
Run Code Online (Sandbox Code Playgroud)

你会得到解密的名字。

如果您真的想查看原始值,请使用:

echo $user->getOriginal('name'); //get original value from DB bypassing the accessor
Run Code Online (Sandbox Code Playgroud)