* 암호화

if(!function_exists('password_hash')) {
	$this->load->helper('password');
}

$hash = password_hash($this->input->post('password'),PASSWORD_BCRYPT); // 암호화된 비밀번호

password.php
다운로드

* 로그인 검증

if($this->input->post('email') && password_verify($this->input->post('password'),$user->password)) {
	// 성공
} else {
	// 실패
}

'php, codeigniter' 카테고리의 다른 글

메일 전송하기  (0) 2014.10.15
url 헬퍼 - site_url / redirect  (0) 2014.10.15
세션(session) 이용하기  (0) 2014.10.15
로그파일 설정 및 처리  (0) 2014.10.14
config[] 환경 설정하기  (0) 2014.10.14
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,