org.bouncycastle.pqc.crypto.crystals.kyber.KyberPrivateKeyParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on 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 Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.pqc.crypto.crystals.kyber;
import org.bouncycastle.util.Arrays;
public class KyberPrivateKeyParameters
extends KyberKeyParameters
{
final byte[] s;
final byte[] hpk;
final byte[] nonce;
final byte[] t;
final byte[] rho;
public KyberPrivateKeyParameters(KyberParameters params, byte[] s, byte[] hpk, byte[] nonce, byte[] t, byte[] rho)
{
super(true, params);
this.s = Arrays.clone(s);
this.hpk = Arrays.clone(hpk);
this.nonce = Arrays.clone(nonce);
this.t = Arrays.clone(t);
this.rho = Arrays.clone(rho);
}
public KyberPrivateKeyParameters(KyberParameters params, byte[] encoding)
{
super(true, params);
KyberEngine eng = params.getEngine();
int index = 0;
this.s = Arrays.copyOfRange(encoding, 0, eng.getKyberIndCpaSecretKeyBytes()); index += eng.getKyberIndCpaSecretKeyBytes();
this.t = Arrays.copyOfRange(encoding, index, index + eng.getKyberIndCpaPublicKeyBytes() - KyberEngine.KyberSymBytes); index += eng.getKyberIndCpaPublicKeyBytes() - KyberEngine.KyberSymBytes;
this.rho = Arrays.copyOfRange(encoding, index, index + 32); index += 32;
this.hpk = Arrays.copyOfRange(encoding, index, index + 32); index += 32;
this.nonce = Arrays.copyOfRange(encoding, index, index + KyberEngine.KyberSymBytes);
}
public byte[] getEncoded()
{
return Arrays.concatenate(new byte[][]{ s, t, rho, hpk, nonce });
}
public byte[] getHPK()
{
return Arrays.clone(hpk);
}
public byte[] getNonce()
{
return Arrays.clone(nonce);
}
/** @deprecated Use {@link #getEncoded()} instead. */
public byte[] getPrivateKey()
{
return getEncoded();
}
public byte[] getPublicKey()
{
return KyberPublicKeyParameters.getEncoded(t, rho);
}
public KyberPublicKeyParameters getPublicKeyParameters()
{
return new KyberPublicKeyParameters(getParameters(), t, rho);
}
public byte[] getRho()
{
return Arrays.clone(rho);
}
public byte[] getS()
{
return Arrays.clone(s);
}
public byte[] getT()
{
return Arrays.clone(t);
}
}