org.bouncycastle.pqc.crypto.crystals.kyber.KyberPublicKeyParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk15to18 Show documentation
Show all versions of bcprov-jdk15to18 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.
package org.bouncycastle.pqc.crypto.crystals.kyber;
import org.bouncycastle.util.Arrays;
public class KyberPublicKeyParameters
extends KyberKeyParameters
{
static byte[] getEncoded(byte[] t, byte[] rho)
{
return Arrays.concatenate(t, rho);
}
final byte[] t;
final byte[] rho;
public KyberPublicKeyParameters(KyberParameters params, byte[] t, byte[] rho)
{
super(false, params);
this.t = Arrays.clone(t);
this.rho = Arrays.clone(rho);
}
public KyberPublicKeyParameters(KyberParameters params, byte[] encoding)
{
super(false, params);
this.t = Arrays.copyOfRange(encoding, 0, encoding.length - KyberEngine.KyberSymBytes);
this.rho = Arrays.copyOfRange(encoding, encoding.length - KyberEngine.KyberSymBytes, encoding.length);
}
public byte[] getEncoded()
{
return getEncoded(t, rho);
}
/** @deprecated Use {@link #getEncoded()} instead. */
public byte[] getPublicKey()
{
return getEncoded();
}
public byte[] getRho()
{
return Arrays.clone(rho);
}
public byte[] getT()
{
return Arrays.clone(t);
}
}