![JAR search and dependency download from the Maven repository](/logo.png)
org.bouncycastle.pqc.crypto.mlkem.MLKEMPrivateKeyParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 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.4.
The newest version!
package org.bouncycastle.pqc.crypto.mlkem;
import org.bouncycastle.util.Arrays;
public class MLKEMPrivateKeyParameters
extends MLKEMKeyParameters
{
final byte[] s;
final byte[] hpk;
final byte[] nonce;
final byte[] t;
final byte[] rho;
final byte[] seed;
public MLKEMPrivateKeyParameters(MLKEMParameters params, byte[] s, byte[] hpk, byte[] nonce, byte[] t, byte[] rho)
{
this(params, s, hpk, nonce, t, rho, null);
}
public MLKEMPrivateKeyParameters(MLKEMParameters params, byte[] s, byte[] hpk, byte[] nonce, byte[] t, byte[] rho, byte[] seed)
{
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);
this.seed = Arrays.clone(seed);
}
public MLKEMPrivateKeyParameters(MLKEMParameters params, byte[] encoding)
{
super(true, params);
MLKEMEngine eng = params.getEngine();
if (encoding.length == MLKEMEngine.KyberSymBytes * 2)
{
byte[][] keyData = eng.generateKemKeyPairInternal(
Arrays.copyOfRange(encoding, 0, MLKEMEngine.KyberSymBytes),
Arrays.copyOfRange(encoding, MLKEMEngine.KyberSymBytes, encoding.length));
this.s = keyData[2];
this.hpk = keyData[3];
this.nonce = keyData[4];
this.t = keyData[0];
this.rho = keyData[1];
this.seed = keyData[5];
}
else
{
int index = 0;
this.s = Arrays.copyOfRange(encoding, 0, eng.getKyberIndCpaSecretKeyBytes());
index += eng.getKyberIndCpaSecretKeyBytes();
this.t = Arrays.copyOfRange(encoding, index, index + eng.getKyberIndCpaPublicKeyBytes() - MLKEMEngine.KyberSymBytes);
index += eng.getKyberIndCpaPublicKeyBytes() - MLKEMEngine.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 + MLKEMEngine.KyberSymBytes);
this.seed = null;
}
}
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);
}
public byte[] getPublicKey()
{
return MLKEMPublicKeyParameters.getEncoded(t, rho);
}
public MLKEMPublicKeyParameters getPublicKeyParameters()
{
return new MLKEMPublicKeyParameters(getParameters(), t, rho);
}
public byte[] getRho()
{
return Arrays.clone(rho);
}
public byte[] getS()
{
return Arrays.clone(s);
}
public byte[] getT()
{
return Arrays.clone(t);
}
public byte[] getSeed()
{
return Arrays.clone(seed);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy