![JAR search and dependency download from the Maven repository](/logo.png)
org.bouncycastle.crypto.fips.RandomDsaKCalculator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bc-fips-debug Show documentation
Show all versions of bc-fips-debug Show documentation
The FIPS 140-2 Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms certified to FIPS 140-2 level 1. This jar contains the debug version JCE provider and low-level API for the BC-FJA version 1.0.2.3, FIPS Certificate #3514. Please note the debug jar is not certified.
/***************************************************************/
/****** DO NOT EDIT THIS CLASS bc-java SOURCE FILE ******/
/***************************************************************/
package org.bouncycastle.crypto.fips;
import java.math.BigInteger;
import java.security.SecureRandom;
import org.bouncycastle.util.BigIntegers;
class RandomDsaKCalculator
implements DsaKCalculator
{
private static final BigInteger ZERO = BigInteger.valueOf(0);
private BigInteger q;
private SecureRandom random;
public boolean isDeterministic()
{
return false;
}
public void init(BigInteger n, SecureRandom random)
{
this.q = n;
this.random = random;
}
public void init(BigInteger n, BigInteger d, byte[] message)
{
throw new IllegalStateException("Operation not supported");
}
public BigInteger nextK()
{
int qBitLength = q.bitLength();
BigInteger k;
do
{
k = BigIntegers.createRandomBigInteger(qBitLength, random);
}
while (k.equals(ZERO) || k.compareTo(q) >= 0);
return k;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy