LdapCrypterVariant Enumeration | CryptSharp |
LDAP password schemes.
Namespace: CryptSharp
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.1.0.0
Syntax
public enum LdapCrypterVariant
Public Enumeration LdapCrypterVariant
public enum class LdapCrypterVariant
type LdapCrypterVariant
Members
Member name | Value | Description | |
---|---|---|---|
SSha | 0 | Salted SHA-1. This is the default. | |
Sha | 1 | Unsalted SHA-1. Used in htpasswd files. | |
SSha256 | 6 | Salted SHA-256. | |
Sha256 | 7 | Unsalted SHA-256. | |
SSha384 | 8 | Salted SHA-384. | |
Sha384 | 9 | Unsalted SHA-384. | |
SSha512 | 10 | Salted SHA-512. | |
Sha512 | 11 | Unsalted SHA-512. | |
SMD5 | 2 | Salted MD-5. | |
MD5 | 3 | Unsalted MD-5. | |
Cleartext | 4 | No crypt operation is performed. The password can be read easily. | |
Crypt | 5 | Any crypt algorithm. If you specify this for Variant, you must also set Crypter and may optionally set CrypterOptions. |
See Also