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 classClearPasswordSpecA password specification for clear passwords.classDigestPasswordSpecAPasswordSpecfor a password represented by a Digest Response as seen in Digest-MD5 SASL/HTTP mechanism.classEncryptablePasswordSpecA password specification for clear passwords which are intended to be encrypted or hashed.classHashPasswordSpecA password specification for a password represented by a hash.classIteratedHashPasswordSpecAPasswordSpecfor a password represented by a hash with an iteration count or cost.classIteratedSaltedHashPasswordSpecAPasswordSpecfor a password represented by a hash with a salt and a iteration count or cost.classMaskedPasswordSpecA password specification for a two-way password which is masked.classOneTimePasswordSpecAPasswordSpecfor a one-time password as defined in RFC 2289.classSaltedHashPasswordSpecAPasswordSpecfor 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 PasswordSpecBasicPasswordSpecEncoding. decode(byte[] encoded)Decode the given byte array and create aPasswordSpecfrom it.private static PasswordSpecBasicPasswordSpecEncoding. decodeClearPasswordSpec(org.wildfly.common.iteration.ByteIterator iterator)private static PasswordSpecBasicPasswordSpecEncoding. decodeDigestPasswordSpec(org.wildfly.common.iteration.ByteIterator iterator)private static PasswordSpecBasicPasswordSpecEncoding. decodeHashPasswordSpec(org.wildfly.common.iteration.ByteIterator iterator)private static PasswordSpecBasicPasswordSpecEncoding. decodeIteratedSaltedHashPasswordSpec(org.wildfly.common.iteration.ByteIterator iterator)private static PasswordSpecBasicPasswordSpecEncoding. 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 givenPasswordSpecto a byte array.
-