ParagonIE_Sodium_Core32_BLAKE2b::new64() public WP 1.0
Turn two 32-bit integers into a fixed array representing a 64-bit integer.
{} It's a method of the class: ParagonIE_Sodium_Core32_BLAKE2b{}
No Hooks.
Return
ParagonIE_Sodium_Core32_Int64
. Null. Nothing.
Usage
$result = ParagonIE_Sodium_Core32_BLAKE2b::new64( $high, $low );
- $high(int) (required)
- -
- $low(int) (required)
- -
Code of ParagonIE_Sodium_Core32_BLAKE2b::new64() ParagonIE Sodium Core32 BLAKE2b::new64 WP 5.7
public static function new64($high, $low)
{
return ParagonIE_Sodium_Core32_Int64::fromInts($low, $high);
}