org.bouncycastle.pqc.crypto.lms.LMOtsPrivateKey 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.lms;
import org.bouncycastle.crypto.Digest;
import static org.bouncycastle.pqc.crypto.lms.LM_OTS.D_MESG;
import static org.bouncycastle.pqc.crypto.lms.LM_OTS.SEED_RANDOMISER_INDEX;
class LMOtsPrivateKey
{
private final LMOtsParameters parameter;
private final byte[] I;
private final int q;
private final byte[] masterSecret;
LMOtsPrivateKey(LMOtsParameters parameter, byte[] i, int q, byte[] masterSecret)
{
this.parameter = parameter;
I = i;
this.q = q;
this.masterSecret = masterSecret;
}
LMSContext getSignatureContext(LMSigParameters sigParams, byte[][] path)
{
byte[] C = new byte[parameter.getN()];
SeedDerive derive = getDerivationFunction();
derive.setJ(SEED_RANDOMISER_INDEX); // This value from reference impl.
derive.deriveSeed(C, false);
Digest ctx = DigestUtil.getDigest(parameter);
LmsUtils.byteArray(this.getI(), ctx);
LmsUtils.u32str(this.getQ(), ctx);
LmsUtils.u16str(D_MESG, ctx);
LmsUtils.byteArray(C, ctx);
return new LMSContext(this, sigParams, ctx, C, path);
}
SeedDerive getDerivationFunction()
{
SeedDerive derive = new SeedDerive(I, masterSecret, DigestUtil.getDigest(parameter));
derive.setQ(q);
return derive;
}
public LMOtsParameters getParameter()
{
return parameter;
}
public byte[] getI()
{
return I;
}
public int getQ()
{
return q;
}
public byte[] getMasterSecret()
{
return masterSecret;
}
}