summary refs log tree commit diff
path: root/crypto/src/pqc/crypto/sphincsplus/SK.cs
blob: 86eefa1102c98fb71d2bef3b9abb98e23c2914b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Org.BouncyCastle.Pqc.Crypto.SphincsPlus
{
    internal class SK
    {
        internal byte[] seed;
        internal byte[] prf;

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