Enum LdapSecurityConstants

    • Enum Constant Detail

      • HASH_METHOD_SSHA

        public static final LdapSecurityConstants HASH_METHOD_SSHA
        The Salted SHA encryption method
      • HASH_METHOD_SHA256

        public static final LdapSecurityConstants HASH_METHOD_SHA256
        The SHA-256 encryption method
      • HASH_METHOD_SSHA256

        public static final LdapSecurityConstants HASH_METHOD_SSHA256
        The salted SHA-256 encryption method
      • HASH_METHOD_SHA384

        public static final LdapSecurityConstants HASH_METHOD_SHA384
        The SHA-384 encryption method
      • HASH_METHOD_SSHA384

        public static final LdapSecurityConstants HASH_METHOD_SSHA384
        The salted SHA-384 encryption method
      • HASH_METHOD_SHA512

        public static final LdapSecurityConstants HASH_METHOD_SHA512
        The SHA-512 encryption method
      • HASH_METHOD_SSHA512

        public static final LdapSecurityConstants HASH_METHOD_SSHA512
        The salted SHA-512 encryption method
      • HASH_METHOD_SMD5

        public static final LdapSecurityConstants HASH_METHOD_SMD5
        The Salter MD5 encryption method
      • HASH_METHOD_CRYPT

        public static final LdapSecurityConstants HASH_METHOD_CRYPT
        The crypt encryption method
      • HASH_METHOD_CRYPT_MD5

        public static final LdapSecurityConstants HASH_METHOD_CRYPT_MD5
        The crypt (MD5) encryption method
      • HASH_METHOD_CRYPT_SHA256

        public static final LdapSecurityConstants HASH_METHOD_CRYPT_SHA256
        The crypt (SHA-256) encryption method
      • HASH_METHOD_CRYPT_SHA512

        public static final LdapSecurityConstants HASH_METHOD_CRYPT_SHA512
        The crypt (SHA-512) encryption method
      • HASH_METHOD_CRYPT_BCRYPT

        public static final LdapSecurityConstants HASH_METHOD_CRYPT_BCRYPT
        The BCrypt encryption method
      • HASH_METHOD_PKCS5S2

        public static final LdapSecurityConstants HASH_METHOD_PKCS5S2
        The PBKDF2-based encryption method
    • Method Detail

      • values

        public static LdapSecurityConstants[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (LdapSecurityConstants c : LdapSecurityConstants.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LdapSecurityConstants valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getName

        public String getName()
        Returns:
        the name associated with the constant.
      • getAlgorithm

        public String getAlgorithm()
        Returns:
        the prefix associated with the constant.
      • getPrefix

        public String getPrefix()
        Returns:
        the prefix associated with the constant.
      • getSubPrefix

        public String getSubPrefix()
        Returns:
        the optional sub-prefix associated with the constant.
      • getAlgorithm

        public static LdapSecurityConstants getAlgorithm​(String algorithm)
        Get the associated constant from a string
        Parameters:
        algorithm - The algorithm's name
        Returns:
        The associated constant