What's the password storage format when using the DelegatingPasswordEncoder?
encodedPassword{id}, where {id} is an identifier used to look up which PasswordEncoder should be used.
{id}encodedPassword, where {id} is an identifier used to look up which PasswordEncoder should be used.
{timestamp}encodedPassword, where {timestamp} is the time when the password was encoded.
{id}{salt}encodedPassword, where {id} is an identifier used to look up which PasswordEncoder should be used and {salt} a randomly generated salt.
https://docs.spring.io/spring-security/site/docs/current/api/org/springframework/security/crypto/password/DelegatingPasswordEncoder.html
Submit