Example usage for org.springframework.security.crypto.password Pbkdf2PasswordEncoder Pbkdf2PasswordEncoder

List of usage examples for org.springframework.security.crypto.password Pbkdf2PasswordEncoder Pbkdf2PasswordEncoder

Introduction

In this page you can find the example usage for org.springframework.security.crypto.password Pbkdf2PasswordEncoder Pbkdf2PasswordEncoder.

Prototype

public Pbkdf2PasswordEncoder() 

Source Link

Document

Constructs a PBKDF2 password encoder with no additional secret value.

Usage

From source file:com.kazuki43zoo.jpetstore.config.ApplicationConfig.java

@Bean
protected PasswordEncoder passwordEncoder() {
    return new Pbkdf2PasswordEncoder();
}