Skip to content

Instantly share code, notes, and snippets.

@shazin
Created April 26, 2016 08:34
@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