mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-15 22:26:32 +02:00
.github
build
git-tools
phpBB
adm
assets
bin
cache
config
develop
docs
download
ext
files
images
includes
install
language
phpbb
attachment
auth
avatar
cache
captcha
config
console
controller
cron
db
debug
di
event
exception
extension
feed
files
filesystem
group
groupposition
help
hook
install
language
lock
log
message
mimetype
module
notification
passwords
driver
base.php
bcrypt.php
bcrypt_2y.php
bcrypt_wcf2.php
convert_password.php
driver_interface.php
helper.php
md5_mybb.php
md5_phpbb2.php
md5_vb.php
phpass.php
rehashable_driver_interface.php
salted_md5.php
sha1.php
sha1_smf.php
sha1_wcf1.php
sha_xf1.php
helper.php
manager.php
php
plupload
profilefields
report
request
routing
search
template
textformatter
textreparser
tree
class_loader.php
composer.json
config_php_file.php
content_visibility.php
datetime.php
error_collector.php
file_downloader.php
filesystem.php
finder.php
json_response.php
pagination.php
path_helper.php
permissions.php
recursive_dot_prefix_filter_iterator.php
session.php
symfony_request.php
user.php
user_loader.php
version_helper.php
viewonline_helper.php
store
styles
.htaccess
app.php
common.php
composer.json
composer.lock
cron.php
faq.php
feed.php
index.php
mcp.php
memberlist.php
posting.php
report.php
search.php
ucp.php
viewforum.php
viewonline.php
viewtopic.php
web.config
tests
travis
vagrant
.editorconfig
.gitignore
.jscsrc
.jshintrc
.travis.yml
README.md
Vagrantfile
composer.phar
phpunit.xml.dist
26 lines
594 B
PHP
26 lines
594 B
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of the phpBB Forum Software package.
|
|
*
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
*
|
|
* For full copyright and license information, please see
|
|
* the docs/CREDITS.txt file.
|
|
*
|
|
*/
|
|
|
|
namespace phpbb\passwords\driver;
|
|
|
|
interface rehashable_driver_interface extends driver_interface
|
|
{
|
|
/**
|
|
* Check if password needs to be rehashed
|
|
*
|
|
* @param string $hash Hash to check for rehash
|
|
* @return bool True if password needs to be rehashed, false if not
|
|
*/
|
|
public function needs_rehash($hash);
|
|
}
|