File "CurveFpInterface.php"

Full Path: /home/digidjwy/public_html/wp-content/plugins/mycryptocheckout/vendor/mdanter/ecc/src/Primitives/CurveFpInterface.php
File size: 3.63 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Mdanter\Ecc\Primitives;

use Mdanter\Ecc\Math\ModularArithmetic;
use Mdanter\Ecc\Random\RandomNumberGeneratorInterface;

/**
 * *********************************************************************
 * Copyright (C) 2012 Matyas Danter
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 * ***********************************************************************
 */

/**
 * This is the contract for implementing CurveFp (EC prime finite-field).
 */
interface CurveFpInterface
{

    /**
     * Returns a modular arithmetic adapter.
     *
     * @return ModularArithmetic
     */
    public function getModAdapter();

    /**
     * Returns the point identified by given coordinates.
     *
     * @param  \GMP $x
     * @param  \GMP $y
     * @param  \GMP $order
     * @return PointInterface
     */
    public function getPoint(\GMP $x, \GMP $y, \GMP $order = null);

    /**
     * @param bool $wasOdd
     * @param \GMP $x
     * @return \GMP
     */
    public function recoverYfromX($wasOdd, \GMP $x);

    /**
     * Returns a point representing infinity on the curve.
     *
     * @return PointInterface
     */
    public function getInfinity();

    /**
     *
     * @param  \GMP $x
     * @param  \GMP $y
     * @param  \GMP $order
     * @param  RandomNumberGeneratorInterface $randomGenerator
     * @return GeneratorPoint
     */
    public function getGenerator(\GMP $x, \GMP $y, \GMP $order, RandomNumberGeneratorInterface $randomGenerator = null);

    /**
     * Checks whether the curve contains the given coordinates.
     *
     * @param  \GMP $x
     * @param  \GMP $y
     * @return bool
     */
    public function contains(\GMP $x, \GMP $y);

    /**
     * Returns the a parameter of the curve.
     *
     * @return \GMP
     */
    public function getA();

    /**
     * Returns the b parameter of the curve.
     *
     * @return \GMP
     */
    public function getB();

    /**
     * Returns the prime associated with the curve.
     *
     * @return \GMP
     */
    public function getPrime();

    /**
     * @return int
     */
    public function getSize();

    /**
     * Compares the curve to another.
     *
     * @param  CurveFpInterface $other
     * @return int              < 0 if $this < $other, 0 if $other == $this, > 0 if $this > $other
     */
    public function cmp(CurveFpInterface $other);

    /**
     * Checks whether the curve is equal to another.
     *
     * @param  CurveFpInterface $other
     * @return bool
     */
    public function equals(CurveFpInterface $other);

    /**
     * Return string representation of curve for debugging
     *
     * @return string
     */
    public function __toString();
}