Java Code Examples for org.springframework.security.authentication.dao.DaoAuthenticationProvider#setPasswordEncoder()
The following examples show how to use
org.springframework.security.authentication.dao.DaoAuthenticationProvider#setPasswordEncoder() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SecurityConfig.java From konker-platform with Apache License 2.0 | 6 votes |
@Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { DaoAuthenticationProvider authenticationProvider = new DaoAuthenticationProvider(); authenticationProvider.setUserDetailsService(detailsService); authenticationProvider.setPasswordEncoder(new PlaintextPasswordEncoder() { @Override public boolean isPasswordValid(String encPass, String rawPass, Object salt) { try { return new PasswordManager().validatePassword(rawPass, encPass); } catch (NoSuchAlgorithmException | InvalidKeySpecException e) { LOGGER.error(e.getMessage(), e); return false; } } }); auth.authenticationProvider(authenticationProvider); }
Example 2
Source File: Oauth20AutoConfiguration.java From MaxKey with Apache License 2.0 | 5 votes |
/** * ProviderManager. * @return oauth20ClientAuthenticationManager */ @Bean(name = "oauth20ClientAuthenticationManager") public ProviderManager oauth20ClientAuthenticationManager( ClientDetailsUserDetailsService oauth20ClientDetailsUserService ) { DaoAuthenticationProvider daoAuthenticationProvider= new DaoAuthenticationProvider(); PasswordEncoder passwordEncoder = NoOpPasswordEncoder.getInstance(); daoAuthenticationProvider.setPasswordEncoder(passwordEncoder); daoAuthenticationProvider.setUserDetailsService(oauth20ClientDetailsUserService); ProviderManager clientAuthenticationManager = new ProviderManager(daoAuthenticationProvider); return clientAuthenticationManager; }
Example 3
Source File: SecurityConfiguration.java From grpc-spring-boot-starter with MIT License | 5 votes |
@Bean // One of your authentication providers. // They ensure that the credentials are valid and populate the user's authorities. DaoAuthenticationProvider daoAuthenticationProvider() { final DaoAuthenticationProvider provider = new DaoAuthenticationProvider(); provider.setUserDetailsService(userDetailsService()); provider.setPasswordEncoder(passwordEncoder()); return provider; }
Example 4
Source File: AppSecurityModelF.java From Spring-5.0-Cookbook with MIT License | 5 votes |
@Bean public DaoAuthenticationProvider authProvider() { DaoAuthenticationProvider daoProvider = new DaoAuthenticationProvider(); daoProvider.setPasswordEncoder(md5PasswordEncoder()); daoProvider.setUserDetailsService(userDetailsService); ReflectionSaltSource saltHash = new ReflectionSaltSource(); saltHash.setUserPropertyToUse("username"); daoProvider.setSaltSource(saltHash); return daoProvider; }
Example 5
Source File: AppSecurityModelE.java From Spring-5.0-Cookbook with MIT License | 5 votes |
@Bean public DaoAuthenticationProvider authProvider() { DaoAuthenticationProvider daoProvider = new DaoAuthenticationProvider(); daoProvider.setPasswordEncoder(md5PasswordEncoder()); daoProvider.setUserDetailsService(userDetailsService); ReflectionSaltSource saltHash = new ReflectionSaltSource(); saltHash.setUserPropertyToUse("username"); daoProvider.setSaltSource(saltHash); return daoProvider; }
Example 6
Source File: AppSecurityModelJ.java From Spring-5.0-Cookbook with MIT License | 5 votes |
@Bean public DaoAuthenticationProvider authProvider() { DaoAuthenticationProvider daoProvider = new DaoAuthenticationProvider(); daoProvider.setPasswordEncoder(md5PasswordEncoder()); daoProvider.setUserDetailsService(userDetailsService); ReflectionSaltSource saltHash = new ReflectionSaltSource(); saltHash.setUserPropertyToUse("username"); daoProvider.setSaltSource(saltHash); return daoProvider; }
Example 7
Source File: AppSecurityModelE2.java From Spring-5.0-Cookbook with MIT License | 5 votes |
@Bean public DaoAuthenticationProvider authProvider() { DaoAuthenticationProvider daoProvider = new DaoAuthenticationProvider(); daoProvider.setPasswordEncoder(md5PasswordEncoder()); daoProvider.setUserDetailsService(userDetailsService); ReflectionSaltSource saltHash = new ReflectionSaltSource(); saltHash.setUserPropertyToUse("username"); daoProvider.setSaltSource(saltHash); return daoProvider; }
Example 8
Source File: AppSecurityModelG.java From Spring-5.0-Cookbook with MIT License | 5 votes |
@Bean public DaoAuthenticationProvider authProvider() { DaoAuthenticationProvider daoProvider = new DaoAuthenticationProvider(); daoProvider.setPasswordEncoder(md5PasswordEncoder()); daoProvider.setUserDetailsService(userDetailsService); ReflectionSaltSource saltHash = new ReflectionSaltSource(); saltHash.setUserPropertyToUse("username"); daoProvider.setSaltSource(saltHash); return daoProvider; }
Example 9
Source File: WithBasicAuthSecurityConfiguration.java From grpc-spring-boot-starter with MIT License | 5 votes |
@Bean DaoAuthenticationProvider daoAuthenticationProvider() { final DaoAuthenticationProvider provider = new DaoAuthenticationProvider(); provider.setUserDetailsService(userDetailsService()); provider.setPasswordEncoder(passwordEncoder()); return provider; }
Example 10
Source File: WebAnnoSecurity.java From webanno with Apache License 2.0 | 5 votes |
@Bean(name = "authenticationProvider") @Profile("auto-mode-builtin") public DaoAuthenticationProvider internalAuthenticationProvider() { DaoAuthenticationProvider authProvider = new DaoAuthenticationProvider(); authProvider.setUserDetailsService(userDetailsService()); authProvider.setPasswordEncoder(passwordEncoder); return authProvider; }
Example 11
Source File: SecurityConfig.java From springboot-vue.js-bbs with Apache License 2.0 | 5 votes |
@Bean public DaoAuthenticationProvider authenticationProvider() { DaoAuthenticationProvider authProvider = new DaoAuthenticationProvider(); authProvider.setUserDetailsService(userDetailsService); authProvider.setPasswordEncoder(passwordEncoder()); return authProvider; }
Example 12
Source File: SecurityConfig.java From WeBASE-Node-Manager with Apache License 2.0 | 5 votes |
@Bean public DaoAuthenticationProvider userAuthenticationProvider(){ DaoAuthenticationProvider daoAuthenticationProvider = new DaoAuthenticationProvider(); daoAuthenticationProvider.setUserDetailsService(userDetailService); daoAuthenticationProvider.setHideUserNotFoundExceptions(false); daoAuthenticationProvider.setPasswordEncoder(passwordEncoder()); return daoAuthenticationProvider; }
Example 13
Source File: AppSecurityModelG.java From Spring-5.0-Cookbook with MIT License | 5 votes |
@Bean public DaoAuthenticationProvider authProvider() { DaoAuthenticationProvider daoProvider = new DaoAuthenticationProvider(); daoProvider.setPasswordEncoder(md5PasswordEncoder()); daoProvider.setUserDetailsService(userDetailsService); ReflectionSaltSource saltHash = new ReflectionSaltSource(); saltHash.setUserPropertyToUse("username"); daoProvider.setSaltSource(saltHash); return daoProvider; }
Example 14
Source File: InceptionSecurity.java From inception with Apache License 2.0 | 5 votes |
@Bean(name = "authenticationProvider") @Profile("auto-mode-builtin") public DaoAuthenticationProvider internalAuthenticationProvider() { DaoAuthenticationProvider authProvider = new DaoAuthenticationProvider(); authProvider.setUserDetailsService(userDetailsService()); authProvider.setPasswordEncoder(passwordEncoder); return authProvider; }
Example 15
Source File: SpringMvcSecurityConfig.java From Hands-On-High-Performance-with-Spring-5 with MIT License | 5 votes |
@Bean public AuthenticationProvider authenticationProviderBean() { DaoAuthenticationProvider authenticationProvider = new DaoAuthenticationProvider(); authenticationProvider.setPasswordEncoder(passwordEncoder); authenticationProvider.setUserDetailsService(userDetailsService()); return authenticationProvider; }
Example 16
Source File: SpringMvcSecurityConfig.java From Hands-On-High-Performance-with-Spring-5 with MIT License | 5 votes |
@Bean public AuthenticationProvider authenticationProviderBean() { DaoAuthenticationProvider authenticationProvider = new DaoAuthenticationProvider(); authenticationProvider.setPasswordEncoder(passwordEncoder); authenticationProvider.setUserCache(userCache); authenticationProvider.setUserDetailsService(userDetailsService()); return authenticationProvider; }
Example 17
Source File: SecurityConfig.java From torrssen2 with MIT License | 5 votes |
@Bean public DaoAuthenticationProvider authenticationProvider() { DaoAuthenticationProvider authProvider = new DaoAuthenticationProvider(); authProvider.setUserDetailsService(userDetailsService); authProvider.setPasswordEncoder(encoder()); return authProvider; }
Example 18
Source File: WebSecurityConfig.java From SpringSecurity-JWT-Vue-Deom with MIT License | 5 votes |
@Bean public DaoAuthenticationProvider daoAuthenticationProvider() { DaoAuthenticationProvider provider = new DaoAuthenticationProvider(); provider.setHideUserNotFoundExceptions(false); provider.setPasswordEncoder(passwordEncoder()); provider.setUserDetailsService(new CustomUserDetailsService()); return provider; }
Example 19
Source File: Application.java From blackduck-alert with Apache License 2.0 | 5 votes |
@Bean public DaoAuthenticationProvider alertDatabaseAuthProvider(final PasswordEncoder defaultPasswordEncoder) { final DaoAuthenticationProvider provider = new DaoAuthenticationProvider(); provider.setUserDetailsService(userDatabaseService); provider.setPasswordEncoder(defaultPasswordEncoder); return provider; }
Example 20
Source File: SecurityConfig.java From tutorials with MIT License | 4 votes |
public AuthenticationProvider authProvider() { DaoAuthenticationProvider provider = new DaoAuthenticationProvider(); provider.setUserDetailsService(userDetailsService); provider.setPasswordEncoder(passwordEncoder); return provider; }