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

org.bouncycastle.pqc.crypto.crystals.dilithium.PolyVecMatrix Maven / Gradle / Ivy

Go to download

The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up.

There is a newer version: 1.78.1
Show newest version
package org.bouncycastle.pqc.crypto.crystals.dilithium;

class PolyVecMatrix
{
    private final int dilithiumK;
    private final int dilithiumL;

    private final PolyVecL[] mat;

    /**
     * PolyVecL Matrix of size K
     *
     * @param engine source engine for the matrix to be used by.
     */
    public PolyVecMatrix(DilithiumEngine engine)
    {
        this.dilithiumK = engine.getDilithiumK();
        this.dilithiumL = engine.getDilithiumL();
        this.mat = new PolyVecL[dilithiumK];

        for (int i = 0; i < dilithiumK; i++)
        {
            mat[i] = new PolyVecL(engine);
        }
    }

    public void pointwiseMontgomery(PolyVecK t, PolyVecL v)
    {
        int i;
        for (i = 0; i < dilithiumK; ++i)
        {
            t.getVectorIndex(i).pointwiseAccountMontgomery(mat[i], v);
        }
    }

    public void expandMatrix(byte[] rho)
    {
        int i, j;
        for (i = 0; i < dilithiumK; ++i)
        {
            for (j = 0; j < dilithiumL; ++j)
            {
                this.mat[i].getVectorIndex(j).uniformBlocks(rho, (short)((i << 8) + j));
            }
        }
    }

    private String addString()
    {
        String out = "[";
        int i;
        for (i = 0; i < dilithiumK; i++)
        {
            out += "Outer Matrix " + i + " [";
            out += this.mat[i].toString();
            if (i == dilithiumK - 1)
            {
                out += "]\n";
                continue;
            }
            out += "],\n";
        }
        out += "]\n";
        return out;
    }

    public String toString(String name)
    {
        return name.concat(": \n" + this.addString());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy