diff --git a/laravel/crypter.php b/laravel/crypter.php index 18dd51bd..5cbf1101 100644 --- a/laravel/crypter.php +++ b/laravel/crypter.php @@ -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