PHP Conference Japan 2024

sodium_crypto_secretstream_xchacha20poly1305_push

(PHP 7 >= 7.2.0,PHP 8)

sodium_crypto_secretstream_xchacha20poly1305_push加密数据块,以便可以在流式 API 中安全地解密它

描述

sodium_crypto_secretstream_xchacha20poly1305_push(
    字符串 &$state,
    #[\SensitiveParameter] 字符串 $message,
    字符串 $additional_data = "",
    整数 $tag = SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_MESSAGE
): 字符串

加密数据块,以便可以在流式 API 中安全地解密它。

参数

state

参见 sodium_crypto_secretstream_xchacha20poly1305_init_pull()sodium_crypto_secretstream_xchacha20poly1305_init_push()

message

additional_data

tag

可选。可用于断言解密行为(例如重新加钥或指示流中的最后一个块)。

返回值

返回加密的密文。

添加注释

用户贡献的注释

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