mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
0d031a5045
Using the config system for registering password encryptors Remove the eval on password encryptor construction by using reflection Throws deprecation messages when using static register / unregister
14 lines
311 B
YAML
14 lines
311 B
YAML
name: PasswordEncryptor
|
|
---
|
|
PasswordEncryptor:
|
|
encryptors:
|
|
none:
|
|
PasswordEncryptor_None:
|
|
md5:
|
|
PasswordEncryptor_LegacyPHPHash: md5
|
|
sha1:
|
|
PasswordEncryptor_LegacyPHPHash: sha1
|
|
md5_v2.4:
|
|
PasswordEncryptor_PHPHash: md5
|
|
sha1_v2.4:
|
|
PasswordEncryptor_PHPHash: sha1 |