// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.pqc.crypto.picnic;

class KMatrices
{
    private int nmatrices;
    private int rows;
    private int columns;
    private int[] data;
    
    public KMatrices(final int nmatrices, final int rows, final int columns, final int[] data) {
        this.nmatrices = nmatrices;
        this.rows = rows;
        this.columns = columns;
        this.data = data;
    }
    
    public int getNmatrices() {
        return this.nmatrices;
    }
    
    public int getSize() {
        return this.rows * this.columns;
    }
    
    public int getRows() {
        return this.rows;
    }
    
    public int getColumns() {
        return this.columns;
    }
    
    public int[] getData() {
        return this.data;
    }
}
