Hi,
I have created a registration page using CI that works fine. However, I encoded the password using sha1 (see code snippet below), and now that I plan to create a login page, I need to check whether the password the user enters in the login page is the same as that password encoded using sha1 stored in the database. However, I just realized that sha1 is non-decodable.
So how do I use CI's encryption class to both encrypt and then decrypt this password for login purposes? Any assistance will be appreciated. Thanks in advance.
function register_user($username, $password, $name, $email, $activation_code){
$sha1_password = sha1($password); $query_str = "INSERT INTO table_name (username, password, name, email, activation_code) >VALUES (?,?,?,?,?)"; $this->db-query($query_str, array($username, $sha1_password, $name, $email, $activation_code));
}