org.bouncycastle.pqc.crypto.sphincsplus.SPHINCSPlusPrivateKeyParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-jdk15on Show documentation
Show all versions of bcprov-ext-jdk15on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 1.8. Note: this package includes the NTRU encryption algorithms.
The newest version!
package org.bouncycastle.pqc.crypto.sphincsplus;
import org.bouncycastle.util.Arrays;
public class SPHINCSPlusPrivateKeyParameters
extends SPHINCSPlusKeyParameters
{
final SK sk;
final PK pk;
public SPHINCSPlusPrivateKeyParameters(SPHINCSPlusParameters parameters, byte[] skpkEncoded)
{
super(true, parameters);
int n = parameters.getEngine().N;
if (skpkEncoded.length != 4 * n)
{
throw new IllegalArgumentException("private key encoding does not match parameters");
}
this.sk = new SK(Arrays.copyOfRange(skpkEncoded, 0, n), Arrays.copyOfRange(skpkEncoded, n, 2 * n));
this.pk = new PK(Arrays.copyOfRange(skpkEncoded, 2 * n, 3 * n), Arrays.copyOfRange(skpkEncoded, 3 * n, 4 * n));
}
SPHINCSPlusPrivateKeyParameters(SPHINCSPlusParameters parameters, SK sk, PK pk)
{
super(true, parameters);
this.sk = sk;
this.pk = pk;
}
public byte[] getSeed()
{
return Arrays.clone(sk.seed);
}
public byte[] getPrf()
{
return Arrays.clone(sk.prf);
}
public byte[] getPublicSeed()
{
return Arrays.clone(pk.seed);
}
public byte[] getPublicKey()
{
return Arrays.concatenate(pk.seed, pk.root);
}
public byte[] getEncoded()
{
return Arrays.concatenate(sk.seed, sk.prf, pk.seed, pk.root);
}
}