hashing -> hash
This commit is contained in:
@@ -22,8 +22,8 @@
|
||||
namespace OCA\UserSQL\Crypto;
|
||||
|
||||
/**
|
||||
* Abstract Unix Crypt hashing implementation.
|
||||
* The hashing algorithm depends on the chosen salt.
|
||||
* Abstract Unix Crypt hash implementation.
|
||||
* The hash algorithm depends on the chosen salt.
|
||||
*
|
||||
* @see crypt()
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
@@ -52,7 +52,7 @@ abstract class AbstractCrypt extends AbstractAlgorithm
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate a salt string for the hashing algorithm.
|
||||
* Generate a salt string for the hash algorithm.
|
||||
*
|
||||
* @return string The salt string.
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Courier MD5 hashing implementation.
|
||||
* Courier MD5 hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Courier MD5 RAW hashing implementation.
|
||||
* Courier MD5 RAW hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Courier SHA1 hashing implementation.
|
||||
* Courier SHA1 hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Courier SHA256 hashing implementation.
|
||||
* Courier SHA256 hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Unix Crypt hashing implementation.
|
||||
* Unix Crypt hash implementation.
|
||||
*
|
||||
* @see crypt()
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Argon2 Crypt hashing implementation.
|
||||
* Argon2 Crypt hash implementation.
|
||||
*
|
||||
* @see crypt()
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Blowfish Crypt hashing implementation.
|
||||
* Blowfish Crypt hash implementation.
|
||||
*
|
||||
* @see crypt()
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Extended DES Crypt hashing implementation.
|
||||
* Extended DES Crypt hash implementation.
|
||||
*
|
||||
* @see crypt()
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* MD5 Crypt hashing implementation.
|
||||
* MD5 Crypt hash implementation.
|
||||
*
|
||||
* @see crypt()
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* SHA256 Crypt hashing implementation.
|
||||
* SHA256 Crypt hash implementation.
|
||||
*
|
||||
* @see crypt()
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* SHA512 Crypt hashing implementation.
|
||||
* SHA512 Crypt hash implementation.
|
||||
*
|
||||
* @see crypt()
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Standard DES Crypt hashing implementation.
|
||||
* Standard DES Crypt hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* Joomla hashing implementation.
|
||||
* Joomla hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* MD5 hashing implementation.
|
||||
* MD5 hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* phpass hashing implementation.
|
||||
* phpass hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* SHA1 hashing implementation.
|
||||
* SHA1 hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* SHA512 Whirlpool hashing implementation.
|
||||
* SHA512 Whirlpool hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* SSHA* hashing implementation.
|
||||
* SSHA* hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* SSHA256 hashing implementation.
|
||||
* SSHA256 hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace OCA\UserSQL\Crypto;
|
||||
use OCP\IL10N;
|
||||
|
||||
/**
|
||||
* SSHA512 hashing implementation.
|
||||
* SSHA512 hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
namespace OCA\UserSQL\Crypto;
|
||||
|
||||
/**
|
||||
* WCF2 hashing implementation.
|
||||
* WCF2 hash implementation.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user