All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.pqc.math.ntru.polynomial.Polynomial Maven / Gradle / Ivy

There is a newer version: 1.70_1
Show newest version
package org.bouncycastle.pqc.math.ntru.polynomial;

public interface Polynomial
{

    /**
     * Multiplies the polynomial by an IntegerPolynomial,
     * taking the indices mod N.
     *
     * @param poly2 a polynomial
     * @return the product of the two polynomials
     */
    IntegerPolynomial mult(IntegerPolynomial poly2);

    /**
     * Multiplies the polynomial by an IntegerPolynomial,
     * taking the coefficient values mod modulus and the indices mod N.
     *
     * @param poly2   a polynomial
     * @param modulus a modulus to apply
     * @return the product of the two polynomials
     */
    IntegerPolynomial mult(IntegerPolynomial poly2, int modulus);

    /**
     * Returns a polynomial that is equal to this polynomial (in the sense that {@link #mult(IntegerPolynomial, int)}
     * returns equal IntegerPolynomials). The new polynomial is guaranteed to be independent of the original.
     *
     * @return a new IntegerPolynomial.
     */
    IntegerPolynomial toIntegerPolynomial();

    /**
     * Multiplies the polynomial by a BigIntPolynomial, taking the indices mod N. Does not
     * change this polynomial but returns the result as a new polynomial.
* Both polynomials must have the same number of coefficients. * * @param poly2 the polynomial to multiply by * @return a new polynomial */ BigIntPolynomial mult(BigIntPolynomial poly2); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy