diff options
author | rxu <rxu@mail.ru> | 2019-12-28 12:20:51 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2019-12-28 12:20:51 +0700 |
commit | 3669849368b8b39d661e08c2476c510cd4fc7445 (patch) | |
tree | 3547b51c67cc9729af0e0b0b39e8f838a72e3d98 /phpBB/phpbb/passwords/driver/base_native.php | |
parent | d000717d341a2c12099b0fba3ab677bbb0f2340c (diff) | |
download | forums-3669849368b8b39d661e08c2476c510cd4fc7445.tar forums-3669849368b8b39d661e08c2476c510cd4fc7445.tar.gz forums-3669849368b8b39d661e08c2476c510cd4fc7445.tar.bz2 forums-3669849368b8b39d661e08c2476c510cd4fc7445.tar.xz forums-3669849368b8b39d661e08c2476c510cd4fc7445.zip |
[ticket/16266] Refactor patch using argon2 predefined constants
PHPBB3-16266
Diffstat (limited to 'phpBB/phpbb/passwords/driver/base_native.php')
-rw-r--r-- | phpBB/phpbb/passwords/driver/base_native.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/phpBB/phpbb/passwords/driver/base_native.php b/phpBB/phpbb/passwords/driver/base_native.php index ab2e9f83a4..87498327f9 100644 --- a/phpBB/phpbb/passwords/driver/base_native.php +++ b/phpBB/phpbb/passwords/driver/base_native.php @@ -58,25 +58,6 @@ abstract class base_native extends base } /** - * Check if Sodium implementation for argon2 algorithm is being used - * - * @link https://wiki.php.net/rfc/sodium.argon.hash - * - * @return bool - */ - public function is_sodium() - { - static $is_sodium; - - if (!isset($is_sodium)) - { - $is_sodium = defined('PASSWORD_ARGON2_PROVIDER') && PASSWORD_ARGON2_PROVIDER == 'sodium'; - } - - return $is_sodium; - } - - /** * {@inheritdoc} */ public function is_supported() |