You are here

public static function ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_push in Automatic Updates 7

Same name and namespace in other branches
  1. 8 vendor/paragonie/sodium_compat/src/Compat.php \ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_push()

Parameters

string $state:

string $msg:

string $aad:

int $tag:

Return value

string

Throws

SodiumException

1 call to ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_push()
php72compat.php in vendor/paragonie/sodium_compat/lib/php72compat.php

File

vendor/paragonie/sodium_compat/src/Compat.php, line 2444

Class

ParagonIE_Sodium_Compat

Code

public static function crypto_secretstream_xchacha20poly1305_push(&$state, $msg, $aad = '', $tag = 0) {
  if (PHP_INT_SIZE === 4) {
    return ParagonIE_Sodium_Crypto32::secretstream_xchacha20poly1305_push($state, $msg, $aad, $tag);
  }
  return ParagonIE_Sodium_Crypto::secretstream_xchacha20poly1305_push($state, $msg, $aad, $tag);
}