Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../sodium_c.../src/Core32
File: Int64.php
{
[1000] Fix | Delete
$return = new ParagonIE_Sodium_Core32_Int64();
[1001] Fix | Delete
$return->limbs[0] = (int) ($this->limbs[0]);
[1002] Fix | Delete
$return->limbs[1] = (int) ($this->limbs[1]);
[1003] Fix | Delete
$return->limbs[2] = (int) ($this->limbs[2]);
[1004] Fix | Delete
$return->limbs[3] = (int) ($this->limbs[3]);
[1005] Fix | Delete
$return->unsignedInt = $this->unsignedInt;
[1006] Fix | Delete
$return->overflow = ParagonIE_Sodium_Core32_Util::abs($this->overflow);
[1007] Fix | Delete
return $return;
[1008] Fix | Delete
}
[1009] Fix | Delete
[1010] Fix | Delete
/**
[1011] Fix | Delete
* @param bool $bool
[1012] Fix | Delete
* @return self
[1013] Fix | Delete
*/
[1014] Fix | Delete
public function setUnsignedInt($bool = false)
[1015] Fix | Delete
{
[1016] Fix | Delete
$this->unsignedInt = !empty($bool);
[1017] Fix | Delete
return $this;
[1018] Fix | Delete
}
[1019] Fix | Delete
[1020] Fix | Delete
/**
[1021] Fix | Delete
* @return string
[1022] Fix | Delete
* @throws TypeError
[1023] Fix | Delete
*/
[1024] Fix | Delete
public function toString()
[1025] Fix | Delete
{
[1026] Fix | Delete
return ParagonIE_Sodium_Core32_Util::intToChr(($this->limbs[0] >> 8) & 0xff) .
[1027] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr($this->limbs[0] & 0xff) .
[1028] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr(($this->limbs[1] >> 8) & 0xff) .
[1029] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr($this->limbs[1] & 0xff) .
[1030] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr(($this->limbs[2] >> 8) & 0xff) .
[1031] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr($this->limbs[2] & 0xff) .
[1032] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr(($this->limbs[3] >> 8) & 0xff) .
[1033] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr($this->limbs[3] & 0xff);
[1034] Fix | Delete
}
[1035] Fix | Delete
[1036] Fix | Delete
/**
[1037] Fix | Delete
* @return string
[1038] Fix | Delete
* @throws TypeError
[1039] Fix | Delete
*/
[1040] Fix | Delete
public function toReverseString()
[1041] Fix | Delete
{
[1042] Fix | Delete
return ParagonIE_Sodium_Core32_Util::intToChr($this->limbs[3] & 0xff) .
[1043] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr(($this->limbs[3] >> 8) & 0xff) .
[1044] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr($this->limbs[2] & 0xff) .
[1045] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr(($this->limbs[2] >> 8) & 0xff) .
[1046] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr($this->limbs[1] & 0xff) .
[1047] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr(($this->limbs[1] >> 8) & 0xff) .
[1048] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr($this->limbs[0] & 0xff) .
[1049] Fix | Delete
ParagonIE_Sodium_Core32_Util::intToChr(($this->limbs[0] >> 8) & 0xff);
[1050] Fix | Delete
}
[1051] Fix | Delete
[1052] Fix | Delete
/**
[1053] Fix | Delete
* @return string
[1054] Fix | Delete
*/
[1055] Fix | Delete
public function __toString()
[1056] Fix | Delete
{
[1057] Fix | Delete
try {
[1058] Fix | Delete
return $this->toString();
[1059] Fix | Delete
} catch (TypeError $ex) {
[1060] Fix | Delete
// PHP engine can't handle exceptions from __toString()
[1061] Fix | Delete
return '';
[1062] Fix | Delete
}
[1063] Fix | Delete
}
[1064] Fix | Delete
}
[1065] Fix | Delete
[1066] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function