summaryrefslogtreecommitdiffstats
path: root/system/core/compat/hash.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2016-08-23 13:07:11 +0200
committerAndrey Andreev <narf@devilix.net>2016-08-23 13:07:54 +0200
commita9d83fb0ddef91f0fb386cbe8bdb9cef69ca2af3 (patch)
tree16a50f3b552505757253283a907da4d7794004dc /system/core/compat/hash.php
parent5ecf4f91caba105128405b784ceac93c1af69362 (diff)
Merge pull request #4781 from tianhe1986/develop_hash_pbkdf2
Hash: processing algorithm name case-insensitively in hash_pbkdf2()
Diffstat (limited to 'system/core/compat/hash.php')
-rw-r--r--system/core/compat/hash.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/compat/hash.php b/system/core/compat/hash.php
index 6854e4c26..d567d0f80 100644
--- a/system/core/compat/hash.php
+++ b/system/core/compat/hash.php
@@ -119,7 +119,7 @@ if ( ! function_exists('hash_pbkdf2'))
*/
function hash_pbkdf2($algo, $password, $salt, $iterations, $length = 0, $raw_output = FALSE)
{
- if ( ! in_array($algo, hash_algos(), TRUE))
+ if ( ! in_array(strtolower($algo), hash_algos(), TRUE))
{
trigger_error('hash_pbkdf2(): Unknown hashing algorithm: '.$algo, E_USER_WARNING);
return FALSE;