Browse Source

Refactor the encryption class.

Taylor Otwell 13 years ago
parent
commit
8a175894b2
1 changed files with 1 additions and 3 deletions
  1. 1 3
      system/crypt.php

+ 1 - 3
system/crypt.php

@@ -42,9 +42,7 @@ class Crypt {
 	 */
 	public static function decrypt($value)
 	{
-		$value = base64_decode($value, true);
-
-		if ( ! $value)
+		if ( ! is_string($value = base64_decode($value, true)))
 		{
 			throw new \Exception('Decryption error. Input value is not valid base64 data.');
 		}