Created
April 26, 2016 08:34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
protected void configure(AuthenticationManagerBuilder auth) throws Exception { | |
auth.inMemoryAuthentication() | |
.passwordEncoder(passwordEncoder()) | |
.withUser("user") | |
// password | |
.password("$e0801$RiCQjVv5oUECSTLsoFAocOraIHlkz+7jFyYDiOZvhGELYubSU2+6nOqHEn5Di+4vVYTCu9/iehEz3hTMX/BPAA==$dyfPzvED9YX2VPHkgIz+qRR3Vxku3Sz6gXab25w3m30=") | |
.roles("USER"); | |
} | |
@Bean | |
public SCryptPasswordEncoder passwordEncoder() { | |
SCryptPasswordEncoder sCryptPasswordEncoder = new SCryptPasswordEncoder(); | |
return sCryptPasswordEncoder; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment