ParagonIE_Sodium_Core_Curve25519_Ge_P2::__construct() public WP 1.0
ParagonIE_Sodium_Core_Curve25519_Ge_P2 constructor.
{} It's a method of the class: ParagonIE_Sodium_Core_Curve25519_Ge_P2{}
No Hooks.
Return
````. Null. Nothing.
Usage
$ParagonIE_Sodium_Core_Curve25519_Ge_P2 = new ParagonIE_Sodium_Core_Curve25519_Ge_P2(); $ParagonIE_Sodium_Core_Curve25519_Ge_P2->__construct(;
Code of ParagonIE_Sodium_Core_Curve25519_Ge_P2::__construct() ParagonIE Sodium Core Curve25519 Ge P2:: 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
) {
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;
}