ParagonIE_Sodium_Core32_BLAKE2b::to64() protected WP 1.0
Convert an arbitrary number into an SplFixedArray of two 32-bit integers that represents a 64-bit integer.
{} It's a method of the class: ParagonIE_Sodium_Core32_BLAKE2b{}
No Hooks.
Return
ParagonIE_Sodium_Core32_Int64
. Nothing.
Usage
$result = ParagonIE_Sodium_Core32_BLAKE2b::to64( $num );
- $num(int) (required)
- -
Code of ParagonIE_Sodium_Core32_BLAKE2b::to64() ParagonIE Sodium Core32 BLAKE2b::to64 WP 5.7.1
protected static function to64($num)
{
list($hi, $lo) = self::numericTo64BitInteger($num);
return self::new64($hi, $lo);
}