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

com.distrimind.bouncycastle.pqc.crypto.picnic.View Maven / Gradle / Ivy

There is a newer version: 1.78.1
Show newest version
package com.distrimind.bouncycastle.pqc.crypto.picnic;

class View
{
    int[] inputShare;
    byte[] communicatedBits;
    int[] outputShare;
    public View(PicnicEngine engine)
    {
        inputShare = new int[engine.stateSizeBytes] ;
        communicatedBits = new byte[engine.andSizeBytes];
        outputShare = new int[engine.stateSizeBytes] ;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy