Sodium
crypto_stream() WP 1.0
Хуков нет.
Возвращает
Строку.
Использование
crypto_stream( $len, $nonce, $key );
- $len(число) (обязательный)
- -
- $nonce(строка) (обязательный)
- -
- $key(строка) (обязательный)
- -
Заметки
- Смотрите: ParagonIE_Sodium_Compat::crypto_stream()
Код crypto_stream() crypto stream WP 5.6.2
function crypto_stream($len, $nonce, $key)
{
return ParagonIE_Sodium_Compat::crypto_stream($len, $nonce, $key);
}