sodium_crypto_generichash()
Хуков нет.
Возвращает
Строку
.
Использование
sodium_crypto_generichash( $message, $key, $outLen );
- $message(строка) (обязательный)
- -
- $key(строка|null)
- -
По умолчанию: null - $outLen(int)
- -
По умолчанию: 32
Заметки
Код sodium_crypto_generichash() sodium crypto generichash WP 6.0
function sodium_crypto_generichash($message, $key = null, $outLen = 32) { return ParagonIE_Sodium_Compat::crypto_generichash($message, $key, $outLen); }