Browse Source

renamed hasher class to hash and hash method to make.

Taylor Otwell 13 years ago
parent
commit
d05f4fa0db
3 changed files with 6 additions and 6 deletions
  1. 1 1
      application/config/application.php
  2. 1 1
      application/config/auth.php
  3. 4 4
      laravel/security/hash.php

+ 1 - 1
application/config/application.php

@@ -124,7 +124,7 @@ return array(
 		'Eloquent'   => 'Laravel\\Database\\Eloquent\\Model',
 		'File'       => 'Laravel\\File',
 		'Form'       => 'Laravel\\Form',
-		'Hasher'     => 'Laravel\\Security\\Hasher',
+		'Hasher'     => 'Laravel\\Security\\Hash',
 		'HTML'       => 'Laravel\\HTML',
 		'Inflector'  => 'Laravel\\Inflector',
 		'Input'      => 'Laravel\\Input',

+ 1 - 1
application/config/auth.php

@@ -64,7 +64,7 @@ return array(
 	{
 		$user = User::where($config['username'], '=', $username)->first();
 
-		if ( ! is_null($user) and Hasher::check($password, $user->password))
+		if ( ! is_null($user) and Hash::check($password, $user->password))
 		{
 			return $user;
 		}

+ 4 - 4
laravel/security/hasher.php → laravel/security/hash.php

@@ -1,6 +1,6 @@
 <?php namespace Laravel\Security; use Laravel\Str;
 
-class Hasher {
+class Hash {
 
 	/**
 	 * Hash a password using the Bcrypt hashing scheme.
@@ -13,17 +13,17 @@ class Hasher {
 	 *
 	 * <code>
 	 *		// Create a Bcrypt hash of a value
-	 *		$hash = Hasher::hash('secret');
+	 *		$hash = Hash::make('secret');
 	 *
 	 *		// Use a specified number of iterations when creating the hash
-	 *		$hash = Hasher::hash('secret', 12);
+	 *		$hash = Hash::make('secret', 12);
 	 * </code>
 	 *
 	 * @param  string  $value
 	 * @param  int     $rounds
 	 * @return string
 	 */
-	public static function hash($value, $rounds = 8)
+	public static function make($value, $rounds = 8)
 	{
 		return crypt($value, '$2a$'.str_pad($rounds, 2, '0', STR_PAD_LEFT).'$'.static::salt());
 	}