public enum LdapSecurityConstants extends Enum<LdapSecurityConstants>
| Enum Constant and Description |
|---|
HASH_METHOD_CRYPT
The crypt encryption method
|
HASH_METHOD_CRYPT_BCRYPT
The BCrypt encryption method
|
HASH_METHOD_CRYPT_MD5
The crypt (MD5) encryption method
|
HASH_METHOD_CRYPT_SHA256
The crypt (SHA-256) encryption method
|
HASH_METHOD_CRYPT_SHA512
The crypt (SHA-512) encryption method
|
HASH_METHOD_MD5
The MD5 encryption method
|
HASH_METHOD_PKCS5S2
The PBKDF2-based encryption method
|
HASH_METHOD_SHA
The SHA encryption method
|
HASH_METHOD_SHA256
The SHA-256 encryption method
|
HASH_METHOD_SHA384
The SHA-384 encryption method
|
HASH_METHOD_SHA512
The SHA-512 encryption method
|
HASH_METHOD_SMD5
The Salter MD5 encryption method
|
HASH_METHOD_SSHA
The Salted SHA encryption method
|
HASH_METHOD_SSHA256
The salted SHA-256 encryption method
|
HASH_METHOD_SSHA384
The salted SHA-384 encryption method
|
HASH_METHOD_SSHA512
The salted SHA-512 encryption method
|
| Modifier and Type | Field and Description |
|---|---|
private String |
algorithm
The associated algorithm
|
private String |
name
The associated name
|
private String |
prefix
The associated prefix
|
private String |
subPrefix
The optional sub-prefix
|
| Modifier and Type | Method and Description |
|---|---|
String |
getAlgorithm() |
static LdapSecurityConstants |
getAlgorithm(String algorithm)
Get the associated constant from a string
|
String |
getName() |
String |
getPrefix() |
String |
getSubPrefix() |
private static boolean |
matches(String algorithm,
LdapSecurityConstants constant) |
static LdapSecurityConstants |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LdapSecurityConstants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LdapSecurityConstants HASH_METHOD_SHA
public static final LdapSecurityConstants HASH_METHOD_SSHA
public static final LdapSecurityConstants HASH_METHOD_SHA256
public static final LdapSecurityConstants HASH_METHOD_SSHA256
public static final LdapSecurityConstants HASH_METHOD_SHA384
public static final LdapSecurityConstants HASH_METHOD_SSHA384
public static final LdapSecurityConstants HASH_METHOD_SHA512
public static final LdapSecurityConstants HASH_METHOD_SSHA512
public static final LdapSecurityConstants HASH_METHOD_MD5
public static final LdapSecurityConstants HASH_METHOD_SMD5
public static final LdapSecurityConstants HASH_METHOD_CRYPT
public static final LdapSecurityConstants HASH_METHOD_CRYPT_MD5
public static final LdapSecurityConstants HASH_METHOD_CRYPT_SHA256
public static final LdapSecurityConstants HASH_METHOD_CRYPT_SHA512
public static final LdapSecurityConstants HASH_METHOD_CRYPT_BCRYPT
public static final LdapSecurityConstants HASH_METHOD_PKCS5S2
private String name
private String algorithm
private String prefix
private String subPrefix
public static LdapSecurityConstants[] values()
for (LdapSecurityConstants c : LdapSecurityConstants.values()) System.out.println(c);
public static LdapSecurityConstants valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getName()
public String getAlgorithm()
public String getPrefix()
public String getSubPrefix()
public static LdapSecurityConstants getAlgorithm(String algorithm)
algorithm - The algorithm's nameprivate static boolean matches(String algorithm, LdapSecurityConstants constant)
Copyright © 2003–2022 The Apache Software Foundation. All rights reserved.