org.bouncycastle.pqc.crypto.crystals.dilithium.DilithiumPrivateKeyParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-debug-jdk14 Show documentation
Show all versions of bcprov-debug-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.
package org.bouncycastle.pqc.crypto.crystals.dilithium;
import org.bouncycastle.util.Arrays;
public class DilithiumPrivateKeyParameters
extends DilithiumKeyParameters
{
final byte[] rho;
final byte[] k;
final byte[] tr;
final byte[] s1;
final byte[] s2;
final byte[] t0;
private final byte[] t1;
public byte[] getPrivateKey()
{
return getEncoded();
}
public DilithiumPrivateKeyParameters(DilithiumParameters params, byte[] rho, byte[] K, byte[] tr, byte[] s1, byte[] s2, byte[] t0, byte[] t1)
{
super(true, params);
this.rho = Arrays.clone(rho);
this.k = Arrays.clone(K);
this.tr = Arrays.clone(tr);
this.s1 = Arrays.clone(s1);
this.s2 = Arrays.clone(s2);
this.t0 = Arrays.clone(t0);
this.t1 = Arrays.clone(t1);
}
public byte[] getRho()
{
return Arrays.clone(rho);
}
public byte[] getK()
{
return Arrays.clone(k);
}
public byte[] getTr()
{
return Arrays.clone(tr);
}
public byte[] getS1()
{
return Arrays.clone(s1);
}
public byte[] getS2()
{
return Arrays.clone(s2);
}
public byte[] getT0()
{
return Arrays.clone(t0);
}
public byte[] getT1()
{
return t1;
}
public byte[] getEncoded()
{
return Arrays.concatenate(new byte[][] { rho, k, tr, s1, s2, t0 });
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy