summaryrefslogtreecommitdiffstats
path: root/system/helpers/security_helper.php
diff options
context:
space:
mode:
authorfreewil <sean@eternalrise.com>2012-03-18 20:23:09 +0100
committerfreewil <sean@eternalrise.com>2012-03-18 20:23:09 +0100
commit8840c96cc0608859ad4b5341c31db9bb1f833792 (patch)
treee9cf1fafce0abcf2174d6763d32b300987fabaf9 /system/helpers/security_helper.php
parente3a0b2b4cba04f4f0925b6b16d15416aa66e8a85 (diff)
use php's hash() function for do_hash() helper
Diffstat (limited to 'system/helpers/security_helper.php')
-rw-r--r--system/helpers/security_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/security_helper.php b/system/helpers/security_helper.php
index e05e947a5..16dfb0de3 100644
--- a/system/helpers/security_helper.php
+++ b/system/helpers/security_helper.php
@@ -87,7 +87,7 @@ if ( ! function_exists('do_hash'))
{
function do_hash($str, $type = 'sha1')
{
- return ($type === 'sha1') ? sha1($str) : md5($str);
+ return hash($type, $str);
}
}