Magic Hash 관련 비밀번호 체크 코드 수정

This commit is contained in:
chicpro
2015-05-13 17:10:08 +09:00
parent 2705b9312c
commit 01a31bb18f
16 changed files with 42 additions and 18 deletions

View File

@ -30,7 +30,7 @@ else if (is_admin($mb['mb_id']))
// 임시비밀번호 발급
$change_password = rand(100000, 999999);
$mb_lost_certify = sql_password($change_password);
$mb_lost_certify = get_encrypt_string($change_password);
// 어떠한 회원정보도 포함되지 않은 일회용 난수를 생성하여 인증에 사용
$mb_nonce = md5(pack('V*', rand(), rand(), rand(), rand()));