PHP WebShell

Текущая директория: /var/www/bitcardoApp/vendor/simplito/elliptic-php/lib/Curve

Просмотр файла: PresetCurve.php

<?php

namespace Elliptic\Curve;

class PresetCurve
{
    public $curve;
    public $g;
    public $n;
    public $hash;

    function __construct($options)
    {
        if ( $options["type"] === "short" )
            $this->curve = new ShortCurve($options);
        elseif ( $options["type"] === "edwards" )
            $this->curve = new EdwardsCurve($options);
        else
            $this->curve = new MontCurve($options);

        $this->g = $this->curve->g;
        $this->n = $this->curve->n;
        $this->hash = isset($options["hash"]) ? $options["hash"] : null;
    }
}

?>

Выполнить команду


Для локальной разработки. Не используйте в интернете!