ParagonIE_Sodium_Core32_BLAKE2b::add64

Advertisement

Summery Summery

Adds two 64-bit integers together, returning their sum as a SplFixedArray containing two 32-bit integers (representing a 64-bit integer).

Syntax Syntax

ParagonIE_Sodium_Core32_BLAKE2b::add64( ParagonIE_Sodium_Core32_Int64 $x, ParagonIE_Sodium_Core32_Int64 $y )

Parameters Parameters

$x

(Required)

$y

(Required)

Return Return

(ParagonIE_Sodium_Core32_Int64)

Source Source

File: wp-includes/sodium_compat/src/Core32/BLAKE2b.php

    protected static function add64($x, $y)
    {
        return $x->addInt64($y);
    }

Advertisement

Advertisement

Leave a Reply