ParagonIE_Sodium_Core_Curve25519_Ge_Precomp::__construct() public WP 1.0
ParagonIE_Sodium_Core_Curve25519_Ge_Precomp constructor.
{} Это метод класса: ParagonIE_Sodium_Core_Curve25519_Ge_Precomp{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$ParagonIE_Sodium_Core_Curve25519_Ge_Precomp = new ParagonIE_Sodium_Core_Curve25519_Ge_Precomp(); $ParagonIE_Sodium_Core_Curve25519_Ge_Precomp->__construct(;
Код ParagonIE_Sodium_Core_Curve25519_Ge_Precomp::__construct() ParagonIE Sodium Core Curve25519 Ge Precomp:: construct WP 5.6.2
public function __construct(
ParagonIE_Sodium_Core_Curve25519_Fe $yplusx = null,
ParagonIE_Sodium_Core_Curve25519_Fe $yminusx = null,
ParagonIE_Sodium_Core_Curve25519_Fe $xy2d = null
) {
if ($yplusx === null) {
$yplusx = new ParagonIE_Sodium_Core_Curve25519_Fe();
}
$this->yplusx = $yplusx;
if ($yminusx === null) {
$yminusx = new ParagonIE_Sodium_Core_Curve25519_Fe();
}
$this->yminusx = $yminusx;
if ($xy2d === null) {
$xy2d = new ParagonIE_Sodium_Core_Curve25519_Fe();
}
$this->xy2d = $xy2d;
}