1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-16 21:54:00 +02:00

[feature/passwords] Add get_name() method to drivers

This will allow us to actually properly differentiate between the available
drivers.

PHPBB3-11610
This commit is contained in:
Marc Alexander
2013-08-21 16:31:57 -05:00
parent df8e5f4c3c
commit 58755c4972
3 changed files with 36 additions and 0 deletions

View File

@@ -65,4 +65,11 @@ interface phpbb_crypto_driver_interface
* @return string String containing the hash settings
*/
public function get_settings_only($hash, $full = false);
/**
* Get the driver name
*
* @return string Driver name
*/
public function get_name();
}