Trim an exception message in the crypter.
This commit is contained in:
@@ -62,7 +62,7 @@ class Crypter {
|
||||
{
|
||||
if (($value = base64_decode($value)) === false)
|
||||
{
|
||||
throw new \InvalidArgumentException('Decryption error. Input value is not valid base64 data.');
|
||||
throw new \InvalidArgumentException('Input value is not valid base64 data.');
|
||||
}
|
||||
|
||||
$iv = substr($value, 0, static::iv_size());
|
||||
@@ -92,4 +92,4 @@ class Crypter {
|
||||
return Config::$items['application']['key'];
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user