hashFunction property
Stores the hash format of the password
property.
The following hashFunction
values are allowed: * MD5
- Accepts simple
hex-encoded values. * SHA-1
- Accepts simple hex-encoded values. *
crypt
- Compliant with the
C crypt library. Supports
the DES, MD5 (hash prefix $1$
), SHA-256 (hash prefix $5$
), and SHA-512
(hash prefix $6$
) hash algorithms. If rounds are specified as part of
the prefix, they must be 10,000 or fewer.
Implementation
core.String? hashFunction;