Package usecase.auth
Class Pbkdf2PasswordHash
- java.lang.Object
-
- usecase.auth.Pbkdf2PasswordHash
-
- All Implemented Interfaces:
Serializable
public class Pbkdf2PasswordHash extends Object implements Serializable
Classe dedicata alla sicurezza delle password.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Pbkdf2PasswordHash.HashedPassword
-
Constructor Summary
Constructors Constructor Description Pbkdf2PasswordHash()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Pbkdf2PasswordHash.HashedPassword
generate(String password)
Pbkdf2PasswordHash.HashedPassword
generate(String password, byte[] salt)
boolean
verify(String password, byte[] hashedPassword, byte[] salt)
boolean
verify(String password, Pbkdf2PasswordHash.HashedPassword hashedPassword)
-
-
-
Constructor Detail
-
Pbkdf2PasswordHash
public Pbkdf2PasswordHash()
-
-
Method Detail
-
generate
public Pbkdf2PasswordHash.HashedPassword generate(String password, byte[] salt)
-
generate
public Pbkdf2PasswordHash.HashedPassword generate(String password)
-
verify
public boolean verify(String password, Pbkdf2PasswordHash.HashedPassword hashedPassword)
-
-