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

org.bouncycastle.pqc.crypto.sphincsplus.SK Maven / Gradle / Ivy

package org.bouncycastle.pqc.crypto.sphincsplus;

class SK
{
    final byte[] seed;
    final byte[] prf;

    SK(byte[] seed, byte[] prf)
    {
        this.seed = seed;
        this.prf = prf;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy