ParagonIE_Sodium_Core32_Curve25519_Ge_P2::__construct()
ParagonIE_Sodium_Core32_Curve25519_Ge_P2 constructor.
{} Это метод класса: ParagonIE_Sodium_Core32_Curve25519_Ge_P2{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$ParagonIE_Sodium_Core32_Curve25519_Ge_P2 = new ParagonIE_Sodium_Core32_Curve25519_Ge_P2(); $ParagonIE_Sodium_Core32_Curve25519_Ge_P2->__construct(;
Код ParagonIE_Sodium_Core32_Curve25519_Ge_P2::__construct() ParagonIE Sodium Core32 Curve25519 Ge P2:: construct WP 6.0
public function __construct( ParagonIE_Sodium_Core32_Curve25519_Fe $x = null, ParagonIE_Sodium_Core32_Curve25519_Fe $y = null, ParagonIE_Sodium_Core32_Curve25519_Fe $z = null ) { if ($x === null) { $x = new ParagonIE_Sodium_Core32_Curve25519_Fe(); } $this->X = $x; if ($y === null) { $y = new ParagonIE_Sodium_Core32_Curve25519_Fe(); } $this->Y = $y; if ($z === null) { $z = new ParagonIE_Sodium_Core32_Curve25519_Fe(); } $this->Z = $z; }