sodium_crypto_pwhash_str_needs_rehash

(PHP 7 >= 7.2.0,PHP 8)

sodium_crypto_pwhash_str_needs_rehash确定是否需要重新散列密码

描述

sodium_crypto_pwhash_str_needs_rehash(string $password, int $opslimit, int $memlimit): bool

根据当前散列 opslimitmemlimit 确定是否需要重新散列密码。

参数

password

密码散列

opslimit

配置的 opslimit;请参见 sodium_crypto_pwhash_str()

memlimit

配置的 memlimit;请参见 sodium_crypto_pwhash_str()

返回值

如果提供的 memlimit/opslimit 与散列中存储的 memlimit/opslimit 不匹配,则返回 true。如果匹配,则返回 false

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top