标签:main pad sans protected uil port ble 配置 ash
Md5PasswordEncoder
或者SHA ShaPasswordEncoder
的哈希算法进行密码加密,在spring security中依然使用只要指定使用自定义加密算法就行,现在推荐spring使用的BCrypt BCryptPasswordEncoder
,一种基于随机生成salt的根据强大的哈希加密算法。package com.petter.util; import org.springframework.security.authentication.encoding.Md5PasswordEncoder; /** * @author hongxf * @since 2017-04-11 10:52 */ public class MD5EncoderGenerator { public static void main(String[] args) { Md5PasswordEncoder encoder = new Md5PasswordEncoder(); System.out.println(encoder.encodePassword("123456", "hongxf")); } }
package com.petter.util; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; /** * @author hongxf * @since 2017-04-10 10:01 */ public class PasswordEncoderGenerator { public static void main(String[] args) { String password = "123456"; BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder(); String hashedPassword = passwordEncoder.encode(password); System.out.println(hashedPassword); } }
package com.petter.config; import org.springframework.security.authentication.encoding.Md5PasswordEncoder; import org.springframework.security.crypto.password.PasswordEncoder; /** * @author hongxf * @since 2017-04-11 10:39 */ public class CustomPasswordEncoder implements PasswordEncoder { @Override public String encode(CharSequence rawPassword) { Md5PasswordEncoder encoder = new Md5PasswordEncoder(); return encoder.encodePassword(rawPassword.toString(), "hongxf"); } @Override public boolean matches(CharSequence rawPassword, String encodedPassword) { Md5PasswordEncoder encoder = new Md5PasswordEncoder(); return encoder.isPasswordValid(encodedPassword, rawPassword.toString(), "hongxf"); } }
@Bean public PasswordEncoder passwordEncoder(){ return new CustomPasswordEncoder(); //return new BCryptPasswordEncoder(); } @Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { authenticationProvider.setPasswordEncoder(passwordEncoder()); auth.authenticationProvider(authenticationProvider); }
@Bean public PasswordEncoder passwordEncoder(){ //return new CustomPasswordEncoder(); return new BCryptPasswordEncoder(); } @Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { authenticationProvider.setPasswordEncoder(passwordEncoder()); auth.authenticationProvider(authenticationProvider); }
@Bean public PasswordEncoder passwordEncoder(){ return new BCryptPasswordEncoder(); } @Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.jdbcAuthentication().dataSource(dataSource).passwordEncoder(passwordEncoder()) .usersByUsernameQuery("select username,password, enabled from users where username = ?") .authoritiesByUsernameQuery("select username, role from user_roles where username = ?"); }
标签:main pad sans protected uil port ble 配置 ash
原文地址:http://www.cnblogs.com/hongxf1990/p/6692801.html