728x90
1. perl 스크립트를 이용한 sha256 해쉬 패스워드 생성
$ echo -n qwer1234 | shasum -a 256
4d4f26369171994f3a46776ee2d88494fb9955800a5bb6261c016c4bb9f30b56 -
2. php 스크립트를 이용한 해쉬 패스워드 생성
$ more ./sha256.php
<?php
$ret = hash("sha256", "qwer123");
echo $ret;
?>
$ php ./sha256.php
'Engineering > Etc' 카테고리의 다른 글
Redmine 에서 Office365 메일 설정 하기 (0) | 2015.04.28 |
---|---|
Synology DS 414 에 ipkg 설치 (0) | 2015.03.31 |
ClamAV 설치 및 설정 (0) | 2014.10.14 |
SSL cipher suite ordering - Window (2) | 2014.09.22 |
이클립스 VIM(Vrapper pluggin) 에서 Ctrl+F 사용하기 (0) | 2014.08.21 |