public interface PasswordEncoder
Represents different forms to encode passwords.
String
encode(String rawPassword)
boolean
verify(String rawPassword, String encodedPassword)
rawPassword
encodedPassword
String encode(String rawPassword)
Encodes given password.
boolean verify(String rawPassword, String encodedPassword)
Checks if the rawPassword and encodedPassword matches.
Copyright © 2018 JBoss by Red Hat. All rights reserved.