묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
이게 의미하는게 뭔가요?
2011.08.08 20:50
Hash algorithms
AuthMe understands 3 Hash algorithms for encrypting passwords. You can choose in the configuration file which one AuthMe creates for new registered users.
- MD5
- SHA1
- Custom SHA256 hash(default)
The custom SHA256 hash is created like this(pseudo code):
String salt = randomString(length:16);
String encryptedPassword = "$SHA$" + salt + "$" + sha256(sha256(password) + salt);
SQL Tables
- Default table name: authme
- Default column names: username, password
여기서 SQL Tables 는 셋팅했습니다
근데
The custom SHA256 hash is created like this(pseudo code):String salt = randomString(length:16);
String encryptedPassword = "$SHA$" + salt + "$" + sha256(sha256(password) + salt);여기서 이게 뭔소리죠?
mysql code 를 추가하라는건가요?