Summery Summery
Convert an arbitrary number into an SplFixedArray of two 32-bit integers that represents a 64-bit integer.
Syntax Syntax
Parameters Parameters
- $num
-
(Required)
Return Return
Source Source
File: wp-includes/sodium_compat/src/Core32/BLAKE2b.php
protected static function to64($num) { list($hi, $lo) = self::numericTo64BitInteger($num); return self::new64($hi, $lo); }