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

io.gatling.recorder.internal.bouncycastle.pqc.crypto.picnic.KMatricesWithPointer Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.pqc.crypto.picnic;

class KMatricesWithPointer
    extends KMatrices
{
    private int matrixPointer;
    public KMatricesWithPointer(KMatrices m)
    {
        super(m.getNmatrices(), m.getRows(), m.getColumns(), m.getData());
        this.matrixPointer = 0;

    }
    public int getMatrixPointer()
    {
        return matrixPointer;
    }

    public void setMatrixPointer(int matrixPointer)
    {
        this.matrixPointer = matrixPointer;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy