Summery Summery
ParagonIE_Sodium_Core_Curve25519_Ge_P3 constructor.
Syntax Syntax
Parameters Parameters
- $x
-
(Optional)
Default value: null
- $y
-
(Optional)
Default value: null
- $z
-
(Optional)
Default value: null
- $t
-
(Optional)
Default value: null
Source Source
File: wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php
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;
}