Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프로그래머스
- ES
- 프로젝트
- 계산기 만들기
- 브루트포스
- parametric search
- binary search
- Algorithm
- 알고리즘
- programmers
- 이분탐색
- Spring
- til
- 완전탐색
- 구현
- 누적합
- web
- 백준
- CSS
- Java
- 내일배움캠프
- BFS
- 이분 탐색
- OOP
- 코딩테스트
- SpringBoot
- Elasticsearch
- 객체지향
- Generics
- Baekjoon
Archives
- Today
- Total
목록password (1)
개발하는 햄팡이
[Springboot, Mysql, Mybatis] PasswordEncoder구현 - 검색 효율 높인 게시판 구현
SpringSecurity를 한 번 해봤다는 이유로 프로젝트에서 로그인 회원가입구현만 4번째...매번 그냥 라이브러리에 있는 BCryptPasswordEncoder클래스를 가져와서 썼지만 이번에는 공부도 할겸해서 직접 PasswordEncoder를 구현했다.코드 - PasswordEncoder Classpackage com.hampang.boardserver.utils;import java.security.MessageDigest;import lombok.extern.log4j.Log4j2;@Log4j2public class SHA256Util { public static final String ENCRYPTION_KEY = "SHA-256"; public static String encryp..
Back-End/Spring
2024. 10. 23. 11:01