org.bouncycastle.pqc.crypto.picnic.View Maven / Gradle / Ivy
package org.bouncycastle.pqc.crypto.picnic;
class View
{
final int[] inputShare;
final byte[] communicatedBits;
final int[] outputShare;
public View(PicnicEngine engine)
{
inputShare = new int[engine.stateSizeWords] ;
communicatedBits = new byte[engine.andSizeBytes];
outputShare = new int[engine.stateSizeWords] ;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy