Uses of Interface
org.wildfly.security.password.spec.PasswordSpec
-
Packages that use PasswordSpec Package Description org.wildfly.security.password.spec Classes intended to hold raw password material. -
-
Uses of PasswordSpec in org.wildfly.security.password.spec
Classes in org.wildfly.security.password.spec that implement PasswordSpec Modifier and Type Class Description class
ClearPasswordSpec
A password specification for clear passwords.class
DigestPasswordSpec
APasswordSpec
for a password represented by a Digest Response as seen in Digest-MD5 SASL/HTTP mechanism.class
EncryptablePasswordSpec
A password specification for clear passwords which are intended to be encrypted or hashed.class
HashPasswordSpec
A password specification for a password represented by a hash.class
IteratedHashPasswordSpec
APasswordSpec
for a password represented by a hash with an iteration count or cost.class
IteratedSaltedHashPasswordSpec
APasswordSpec
for a password represented by a hash with a salt and a iteration count or cost.class
MaskedPasswordSpec
A password specification for a two-way password which is masked.class
OneTimePasswordSpec
APasswordSpec
for a one-time password as defined in RFC 2289.class
SaltedHashPasswordSpec
APasswordSpec
for a password represented by a hash with a salt.Methods in org.wildfly.security.password.spec that return PasswordSpec Modifier and Type Method Description static PasswordSpec
BasicPasswordSpecEncoding. decode(byte[] encoded)
Decode the given byte array and create aPasswordSpec
from it.private static PasswordSpec
BasicPasswordSpecEncoding. decodeClearPasswordSpec(org.wildfly.common.iteration.ByteIterator iterator)
private static PasswordSpec
BasicPasswordSpecEncoding. decodeDigestPasswordSpec(org.wildfly.common.iteration.ByteIterator iterator)
private static PasswordSpec
BasicPasswordSpecEncoding. decodeHashPasswordSpec(org.wildfly.common.iteration.ByteIterator iterator)
private static PasswordSpec
BasicPasswordSpecEncoding. decodeIteratedSaltedHashPasswordSpec(org.wildfly.common.iteration.ByteIterator iterator)
private static PasswordSpec
BasicPasswordSpecEncoding. decodeSaltedHashPasswordSpec(org.wildfly.common.iteration.ByteIterator iterator)
Methods in org.wildfly.security.password.spec with parameters of type PasswordSpec Modifier and Type Method Description static byte[]
BasicPasswordSpecEncoding. encode(PasswordSpec passwordSpec)
Encode the givenPasswordSpec
to a byte array.
-