ParagonIE_Sodium_Core32_BLAKE2b::to64()
Convert an arbitrary number into an SplFixedArray of two 32-bit integers that represents a 64-bit integer.
{} Это метод класса: ParagonIE_Sodium_Core32_BLAKE2b{}
Хуков нет.
Возвращает
ParagonIE_Sodium_Core32_Int64
.
Использование
$result = ParagonIE_Sodium_Core32_BLAKE2b::to64( $num );
- $num(int) (обязательный)
- -
Код ParagonIE_Sodium_Core32_BLAKE2b::to64() ParagonIE Sodium Core32 BLAKE2b::to64 WP 6.0
protected static function to64($num) { list($hi, $lo) = self::numericTo64BitInteger($num); return self::new64($hi, $lo); }