ParagonIE_Sodium_Core32_BLAKE2b::add64() protected WP 1.0
Adds two 64-bit integers together, returning their sum as a SplFixedArray containing two 32-bit integers (representing a 64-bit integer).
{} Это метод класса: ParagonIE_Sodium_Core32_BLAKE2b{}
Хуков нет.
Возвращает
ParagonIE_Sodium_Core32_Int64.
Использование
$result = ParagonIE_Sodium_Core32_BLAKE2b::add64( $x, $y );
- $x(ParagonIE_Sodium_Core32_число64) (обязательный)
- -
- $y(ParagonIE_Sodium_Core32_число64) (обязательный)
- -
Код ParagonIE_Sodium_Core32_BLAKE2b::add64() ParagonIE Sodium Core32 BLAKE2b::add64 WP 5.6.2
protected static function add64($x, $y)
{
return $x->addInt64($y);
}