Uses of Interface
io.inverno.mod.security.authentication.password.Password
Packages that use Password
Package
Description
Inverno security authentication API.
Inverno security password API.
Inverno security user provisioning API.
Inverno security authentication API implementation.
-
Uses of Password in io.inverno.mod.security.authentication
Methods in io.inverno.mod.security.authentication that return PasswordModifier and TypeMethodDescriptionPassword<?, ?> LoginCredentials.getPassword()Returns the password.Methods in io.inverno.mod.security.authentication with parameters of type PasswordModifier and TypeMethodDescriptionstatic LoginCredentialsCreates a login credentials with the specified username and password.voidAdds/Sets the login credentials identified by the secified username. -
Uses of Password in io.inverno.mod.security.authentication.password
Classes in io.inverno.mod.security.authentication.password with type parameters of type PasswordModifier and TypeClassDescriptionclassAbstractPassword<A extends Password<A,B>, B extends Password.Encoder<A, B>> Base password implementation.interfacePassword<A extends Password<A,B>, B extends Password.Encoder<A, B>> A password represents secret data that can be used to authenticate an entity.static interfacePassword.Encoder<A extends Password<A,B>, B extends Password.Encoder<A, B>> A password encoder used to encode a raw password into a secured password representation.Classes in io.inverno.mod.security.authentication.password that implement PasswordModifier and TypeClassDescriptionclassAbstractPassword<A extends Password<A,B>, B extends Password.Encoder<A, B>> Base password implementation.classA password that uses Argon2 key derivation function to encode password.classA password that uses Bcrypt hashing function to encode password.classA password that uses aMessageDigestto encode password.classA password that uses Password-Based Key Derivation Function 2 to encode password.classRepresents a raw unencoded password.classA password that uses Scrypt hashing function to encode password.Methods in io.inverno.mod.security.authentication.password with parameters of type Password -
Uses of Password in io.inverno.mod.security.authentication.user
Methods in io.inverno.mod.security.authentication.user that return PasswordMethods in io.inverno.mod.security.authentication.user with parameters of type PasswordModifier and TypeMethodDescriptionSpecifies the user password.protected voidUser.setPassword(Password<?, ?> password) Sets the user passwordConstructors in io.inverno.mod.security.authentication.user with parameters of type PasswordModifierConstructorDescriptionCreates a new user with the specified username, identity, password and groups.Creates a new user with the specified username, identity, password, groups and lock flag.Creates a new user with the specified username, password and groups. -
Uses of Password in io.inverno.mod.security.internal.authentication
Methods in io.inverno.mod.security.internal.authentication that return PasswordConstructors in io.inverno.mod.security.internal.authentication with parameters of type PasswordModifierConstructorDescriptionGenericLoginCredentials(String username, Password<?, ?> password) Creates generic credentials with the specified username and password.