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

com.distrimind.bouncycastle.pqc.crypto.sphincsplus.PK Maven / Gradle / Ivy

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

class PK
{
    final byte[] seed;
    final byte[] root;

    PK(byte[] seed, byte[] root)
    {
        this.seed = seed;
        this.root = root;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy