ParagonIE_Sodium_Core_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_Core_BLAKE2b{}
No Hooks.
Return
SplFixedArray
. Null. Nothing.
Usage
$result = ParagonIE_Sodium_Core_BLAKE2b::new64( $high, $low );
- $high(int) (required)
- -
- $low(int) (required)
- -
Code of ParagonIE_Sodium_Core_BLAKE2b::new64() ParagonIE Sodium Core BLAKE2b::new64 WP 5.7
public static function new64($high, $low)
{
$i64 = new SplFixedArray(2);
$i64[0] = $high & 0xffffffff;
$i64[1] = $low & 0xffffffff;
return $i64;
}