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

io.gatling.recorder.internal.bouncycastle.pqc.crypto.ntru.OWCPADecryptResult Maven / Gradle / Ivy

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

/**
 * Class for return values of {@link NTRUOWCPA#decrypt}.
 */
class OWCPADecryptResult
{
    final byte[] rm;
    final int fail;

    public OWCPADecryptResult(byte[] rm, int fail)
    {
        this.rm = rm;
        this.fail = fail;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy