source: phonelux-backend/src/main/java/finki/it/phoneluxbackend/security/PasswordEncoder.java@ e5b84dc

Last change on this file since e5b84dc was dfd5d87, checked in by Marko <Marko@…>, 23 months ago

Registration logic with confirmation token implemented

  • Property mode set to 100644
File size: 398 bytes
Line 
1package finki.it.phoneluxbackend.security;
2
3import org.springframework.context.annotation.Bean;
4import org.springframework.context.annotation.Configuration;
5import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
6
7@Configuration
8public class PasswordEncoder {
9
10 @Bean
11 public BCryptPasswordEncoder bCryptPasswordEncoder(){
12 return new BCryptPasswordEncoder();
13 }
14}
Note: See TracBrowser for help on using the repository browser.