Browse Source

refactoring the crypter class.

Taylor Otwell 13 years ago
parent
commit
80f810de24
1 changed files with 2 additions and 19 deletions
  1. 2 19
      laravel/security/crypter.php

+ 2 - 19
laravel/security/crypter.php

@@ -19,7 +19,7 @@ class Crypter {
 	 *
 	 * @var string
 	 */
-	protected static $mode = 'cbc';
+	protected static $mode = MCRYPT_MODE_CBC;
 
 	/**
 	 * Encrypt a string using Mcrypt.
@@ -37,30 +37,13 @@ class Crypter {
 	 */
 	public static function encrypt($value)
 	{
-		$iv = mcrypt_create_iv(static::iv_size(), static::randomizer());
+		$iv = mcrypt_create_iv(static::iv_size(), MCRYPT_RAND);
 
 		$value = mcrypt_encrypt(static::$cipher, static::key(), $value, static::$mode, $iv);
 
 		return base64_encode($iv.$value);
 	}
 
-	/**
-	 * Get the random number generator appropriate for the server.
-	 *
-	 * There are a variety of sources to get a random number; however, not all
-	 * of them will be available on every server. We will attempt to use the
-	 * most secure random number generator available.
-	 *
-	 * @return int
-	 */
-	protected static function randomizer()
-	{
-		foreach (array('MCRYPT_DEV_URANDOM', 'MCRYPT_DEV_RANDOM', 'MCRYPT_RAND') as $generator)
-		{
-			if (defined($generator)) return constant($generator);
-		}
-	}
-
 	/**
 	 * Decrypt a string using Mcrypt.
 	 *