diff options
author | Daniel Morris <daniel@honestempire.com> | 2012-10-03 20:37:09 +0200 |
---|---|---|
committer | Daniel Morris <daniel@honestempire.com> | 2012-10-03 20:37:09 +0200 |
commit | a9923f5dc131f5a18175b1df3cf3f80a93ffb464 (patch) | |
tree | 8e6976478bcac5f09dade86d2483ee4d8976a96d /system/libraries/Encrypt.php | |
parent | 7bd1690b8b1c74ee6d6ff3868525d8cdc0ec0803 (diff) |
Support for hashing algorithms other than SHA1 and MD5
Signed-off-by: Daniel Morris <daniel@honestempire.com>
Diffstat (limited to 'system/libraries/Encrypt.php')
-rw-r--r-- | system/libraries/Encrypt.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Encrypt.php b/system/libraries/Encrypt.php index 8ffd93aea..3b04f7b06 100644 --- a/system/libraries/Encrypt.php +++ b/system/libraries/Encrypt.php @@ -484,7 +484,7 @@ class CI_Encrypt { */ public function set_hash($type = 'sha1') { - $this->_hash_type = ($type !== 'sha1' && $type !== 'md5') ? 'sha1' : $type; + $this->_hash_type = (in_array($type, hash_algos())) ? $type : 'sha1'; } // -------------------------------------------------------------------- @@ -497,7 +497,7 @@ class CI_Encrypt { */ public function hash($str) { - return ($this->_hash_type === 'sha1') ? sha1($str) : md5($str); + return hash($this->_hash_type, $str); } } |