Browse Source

rearrange hash class.

Taylor Otwell 13 years ago
parent
commit
a36e2773e2
1 changed files with 12 additions and 12 deletions
  1. 12 12
      laravel/hash.php

+ 12 - 12
laravel/hash.php

@@ -2,6 +2,18 @@
 
 class Hash {
 
+	/**
+	 * Determine if an unhashed value matches a given Bcrypt hash.
+	 *
+	 * @param  string  $value
+	 * @param  string  $hash
+	 * @return bool
+	 */
+	public static function check($value, $hash)
+	{
+		return crypt($value, $hash) === $hash;
+	}
+
 	/**
 	 * Hash a password using the Bcrypt hashing scheme.
 	 *
@@ -39,16 +51,4 @@ class Hash {
 		return crypt($value, '$2a$'.$work.'$'.$salt);
 	}
 
-	/**
-	 * Determine if an unhashed value matches a given Bcrypt hash.
-	 *
-	 * @param  string  $value
-	 * @param  string  $hash
-	 * @return bool
-	 */
-	public static function check($value, $hash)
-	{
-		return crypt($value, $hash) === $hash;
-	}
-
 }