我正在基于http://www.edzynda.com/create-a-self-destructing-encrypted-message-app-in-laravel-part-1/
的示例实现可逆加密算法我已将代码放在模型事件函数中:
public static function boot()
{
parent::boot();
// Setup event bindings...
static::creating(function($account)
{
/* encrypt password and save iv */
$encryption = self::encrypt($account->db_password); // or: Input::get('db_password')
$account->db_password = $encryption['encrypted_string'];
$account->iv = $encryption['iv'];
Log::debug($account);
//print_r ($encryption);
});
}
public static function encrypt($string)
{
// Generate an IV
$iv_size = mcrypt_get_iv_size(MCRYPT_BLOWFISH, MCRYPT_MODE_CFB);
$iv = mcrypt_create_iv($iv_size, MCRYPT_DEV_URANDOM);
// Encrypt the string
$encrypted_string = mcrypt_encrypt(MCRYPT_BLOWFISH, $_ENV['ACCOUNT_KEY'], $string, MCRYPT_MODE_CFB, $iv);
return ['encrypted_string' => $encrypted_string, 'iv' => $iv];
}
在我的数据库浏览器中,我调用Model :: create使字符串在保存之前被加密。这是从我的测试中调用的。但是,我正在
[ErrorException]
json_encode(): Invalid UTF-8 sequence in argument
我确保列类型是二进制的。
额外信息:当我对任一值($ iv或$ string)执行mb_detect_encoding时,我得到UTF-8,或者什么都没有,我想根据结果中出现的随机字符而定。
答案 0 :(得分:0)
我的解决方案:对于存储和传输,加密的字符串和IV需要进行base64编码。
上面的相关行改为:
return [
'encrypted_string' => base64_encode($encrypted_string),
'iv' => base64_encode($iv)
];
当然必须在使用存储的IV值解密字符串之前使用base64_decode。