認証プロセスが機能しないため、java で play 2 の securesocial プラグインのパスワードバリデーターとパスワードハッシャーを再定義しようとしています..データベース内のハッシュ パスワード ストア)
ドキュメントで説明されているように、私はすでに passwordValidator を拡張しています (http://securesocial.ws/guide/password-plugins.html)
public class BCryptPasswordHasher は BasePasswordHasher を拡張します{
public PasswordInfo doHash(String plainPassword){
PasswordInfo pI = new PasswordInfo();
pI.password = BCrypt.hashpw(plainPassword, BCrypt.gensalt());
return pI;
}
public boolean doMatch(PasswordInfo passwordInfo, String suppliedPassword){
return BCrypt.checkpw(suppliedPassword, passwordInfo.password);
}
}
次のエラーが表示されます。
tools.BCryptPasswordHasher は抽象ではなく、securesocial.core.java.BasePasswordHasher の抽象メソッド doMatch(securesocial.core.java.PasswordInfo,java.lang.String) をオーバーライドしません。
どうすればこれを行うことができるか知っていますか?
よろしくお願いいたします。
PS: BasePasswordHasher
public 抽象クラス BasePasswordHasher は PasswordHasher を実装します。
public BasePasswordHasher(Application application) {
this.application = application;
}
@Override
public securesocial.core.PasswordInfo hash(String plainPassword) {
return doHash(plainPassword).toScala();
}
@Override
public boolean matches(securesocial.core.PasswordInfo passwordInfo, String suppliedPassword) {
return doMatch(PasswordInfo.fromScala(passwordInfo), suppliedPassword);
}
/**
* Hashes a password
*
* @param plainPassword the password to hash
* @return a PasswordInfo containting the hashed password and optional salt
*/
abstract PasswordInfo doHash(String plainPassword);
/**
* Checks whether a supplied password matches the hashed one
*
* @param passwordInfo the password retrieved from the backing store (by means of UserService)
* @param suppliedPassword the password supplied by the user trying to log in
* @return true if the password matches, false otherwise.
*/
abstract boolean doMatch(PasswordInfo passwordInfo, String suppliedPassword);
}