fix padding bug in crypter.
This commit is contained in:
parent
60ad02ad01
commit
15414808a1
|
@ -138,7 +138,7 @@ protected static function unpad($value)
|
|||
$pad = ord(substr($value, -1));
|
||||
}
|
||||
|
||||
if ($pad and $pad < static::$block)
|
||||
if ($pad and $pad <= static::$block)
|
||||
{
|
||||
// If the correct padding is present on the string, we will remove
|
||||
// it and return the value. Otherwise, we'll throw an exception
|
||||
|
|
Loading…
Reference in New Issue