ParagonIE_Sodium_Core32_BLAKE2b::new64

Advertisement

Summery Summery

Turn two 32-bit integers into a fixed array representing a 64-bit integer.

Syntax Syntax

ParagonIE_Sodium_Core32_BLAKE2b::new64( int $high, int $low )

Parameters Parameters

$high

(Required)

$low

(Required)

Return Return

(ParagonIE_Sodium_Core32_Int64)

Source Source

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

    public static function new64($high, $low)
    {
        return ParagonIE_Sodium_Core32_Int64::fromInts($low, $high);
    }

Advertisement

Advertisement

Leave a Reply