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

package org.bouncycastle.pqc.crypto.picnic;

class Msg
{
    byte[][] msgs;
    int pos;
    int unopened;
    
    public Msg(final PicnicEngine picnicEngine) {
        this.msgs = new byte[picnicEngine.numMPCParties][picnicEngine.andSizeBytes];
        this.pos = 0;
        this.unopened = -1;
    }
}
