ParagonIE_Sodium_Core_Curve25519_Ge_P3::__construct() public WP 1.0
ParagonIE_Sodium_Core_Curve25519_Ge_P3 constructor.
{} It's a method of the class: ParagonIE_Sodium_Core_Curve25519_Ge_P3{}
No Hooks.
Return
````. Null. Nothing.
Usage
$ParagonIE_Sodium_Core_Curve25519_Ge_P3 = new ParagonIE_Sodium_Core_Curve25519_Ge_P3(); $ParagonIE_Sodium_Core_Curve25519_Ge_P3->__construct(;
Code of ParagonIE_Sodium_Core_Curve25519_Ge_P3::__construct() ParagonIE Sodium Core Curve25519 Ge P3:: construct WP 5.7
public function __construct(
ParagonIE_Sodium_Core_Curve25519_Fe $x = null,
ParagonIE_Sodium_Core_Curve25519_Fe $y = null,
ParagonIE_Sodium_Core_Curve25519_Fe $z = null,
ParagonIE_Sodium_Core_Curve25519_Fe $t = null
) {
if ($x === null) {
$x = new ParagonIE_Sodium_Core_Curve25519_Fe();
}
$this->X = $x;
if ($y === null) {
$y = new ParagonIE_Sodium_Core_Curve25519_Fe();
}
$this->Y = $y;
if ($z === null) {
$z = new ParagonIE_Sodium_Core_Curve25519_Fe();
}
$this->Z = $z;
if ($t === null) {
$t = new ParagonIE_Sodium_Core_Curve25519_Fe();
}
$this->T = $t;
}