public class TestController{
public static void main(String[] args) {
BCryptPasswordEncoder bCryptPasswordEncoder = new BCryptPasswordEncoder();
List<String> encPWs = new ArrayList<>();
for (int i = 0; i < 100; i++) {
encPWs.add(bCryptPasswordEncoder.encode("1234"));
}
for (int i = 0; i < encPWs.size(); i++) {
System.out.println(encPWs.get(i));
System.out.println("1234 = "+bCryptPasswordEncoder.matches("1234", encPWs.get(i)));
System.out.println();
}
}
}
'낙서장' 카테고리의 다른 글
git 깃 아이디 확인 및 수정 (0) | 2020.11.24 |
---|---|
깃헙 재로그인 토큰 생성 (0) | 2020.11.23 |
temp (0) | 2020.11.13 |
리눅스에서 get 요청 테스트 (0) | 2020.10.27 |
날짜 파싱하기 (0) | 2020.08.28 |