Browse Source

cleaning up code.

Taylor Otwell 13 years ago
parent
commit
ea358eb371
1 changed files with 7 additions and 1 deletions
  1. 7 1
      laravel/crypter.php

+ 7 - 1
laravel/crypter.php

@@ -141,7 +141,13 @@ class Crypter {
 				return substr($value, 0, $length - $pad);
 			}
 
-			throw new \Exception("Decryption error. Padding is invalid.");
+			// If the padding characters do not match the expected padding
+			// for the value we'll bomb out with an exception since the
+			// encrypted value seems to have been changed.
+			else
+			{
+				throw new \Exception("Decryption error. Padding is invalid.");
+			}
 		}
 
 		return $value;