mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 12:03:21 +01:00
This will allow us to actually properly differentiate between the available drivers. PHPBB3-11610
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
services:
|
|
crypto.driver.bcrypt:
|
|
class: phpbb_crypto_driver_bcrypt
|
|
arguments:
|
|
- @config
|
|
calls:
|
|
- [set_name, [crypto.driver.bcrypt]]
|
|
tags:
|
|
- { name: crypto.driver }
|
|
|
|
crypto.driver.bcrypt_2y:
|
|
class: phpbb_crypto_driver_bcrypt_2y
|
|
arguments:
|
|
- @config
|
|
calls:
|
|
- [set_name, [crypto.driver.bcrypt_2y]]
|
|
tags:
|
|
- { name: crypto.driver }
|
|
|
|
crypto.driver.salted_md5:
|
|
class: phpbb_crypto_driver_salted_md5
|
|
arguments:
|
|
- @config
|
|
calls:
|
|
- [set_name, [crypto.driver.salted_md5]]
|
|
tags:
|
|
- { name: crypto.driver }
|
|
|
|
crypto.driver.phpass:
|
|
class: phpbb_crypto_driver_phpass
|
|
arguments:
|
|
- @config
|
|
calls:
|
|
- [set_name, [crypto.driver.phpass]]
|
|
tags:
|
|
- { name: crypto.driver }
|
|
|
|
crypto.driver_collection:
|
|
class: phpbb_di_service_collection
|
|
arguments:
|
|
- @service_container
|
|
tags:
|
|
- { name: service_collection, tag: crypto.driver }
|