sodium_crypto_secretstream_xchacha20poly1305_push

(PHP 7 >= 7.2.0, PHP 8)

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

描述

sodium_crypto_secretstream_xchacha20poly1305_push(
    string &$state,
    #[\SensitiveParameter] string $message,
    string $additional_data = "",
    int $tag = SODIUM_CRYPTO_SECRETSTREAM_XCHACHA20POLY1305_TAG_MESSAGE
): string

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

参数

state

参见 sodium_crypto_secretstream_xchacha20poly1305_init_pull()sodium_crypto_secretstream_xchacha20poly1305_init_push()

message

additional_data

tag

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

返回值

返回加密的密文。

添加备注

用户贡献的备注

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