14 lines
400 B
Java
14 lines
400 B
Java
|
package ru.ulstu.configuration;
|
||
|
|
||
|
import org.springframework.context.annotation.Bean;
|
||
|
import org.springframework.context.annotation.Configuration;
|
||
|
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
|
||
|
|
||
|
@Configuration
|
||
|
public class PasswordEncoderConfiguration {
|
||
|
@Bean
|
||
|
public BCryptPasswordEncoder bCryptPasswordEncoder() {
|
||
|
return new BCryptPasswordEncoder();
|
||
|
}
|
||
|
}
|