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