-
[Project] Day10Project 2024. 5. 11. 14:28728x90
CREATE TABLE members(
member_id BIGINT AUTO_INCREMENT Primary Key,
email VARCHAR(255) NOT NULL,
password VARCHAR(255) NOT NULL,
created_time TIMESTAMP,
modified_time TIMESTAMP
);BCryptPasswordEncoder 이외에도
LdapShaPasswordEncoder : `Deprecated` 다이제스트 기반 비밀번호 인코딩은 안전하지 않은 것으로 간주되어 더 이상 사용되지 않습니다. base64 인코딩
NoOpPasswordEncoder : `Deprecated` 레거시 구현으로 안전하지 않아 더 이상 사용되지 않습니다. 인코딩과정이 없고 평문으로 제공
StandardPasswordEncoder : `Deprecated` 다이제스트 기반 비밀번호 인코딩은 안전하지 않은 것으로 간주되어 더 이상 사용되지 않습니다.
Pbkdf2PasswordEncoder :
SCryptPasswordEncoder :
https://blog.ircmaxell.com/2014/03/why-i-dont-recommend-scrypt.html
Argon2PasswordEncoder :
https://docs.spring.io/spring-security/site/docs/current/api/org/springframework/security/crypto/password/package-summary.htmlhttps://jeong-pro.tistory.com/195
https://bugoverdose.github.io/development/spring-exception-handling-with-controlleradvice/
https://brunch.co.kr/@springboot/292
728x90'Project' 카테고리의 다른 글
[Project] Naver cloud platform 서버 생성 (0) 2024.06.08 [Project] day 11 : Spring session (0) 2024.05.17 [Project] day6 (0) 2024.05.08 [Project] day5 : (0) 2024.05.07 [Project] day3 : (0) 2024.05.04