com.fitbur.bouncycastle.crypto.signers.DSAKCalculator Maven / Gradle / Ivy
package com.fitbur.bouncycastle.crypto.signers;
import java.math.BigInteger;
import java.security.SecureRandom;
/**
* Interface com.fitburfine calculators of K values for DSA/ECDSA.
*/
public interface DSAKCalculator
{
/**
* Return true if this calculator is com.fitburterministic, false otherwise.
*
* @return true if com.fitburterministic, otherwise false.
*/
boolean isDeterministic();
/**
* Non-com.fitburterministic initialiser.
*
* @param n the order of the DSA group.
* @param random a source of randomness.
*/
void init(BigInteger n, SecureRandom random);
/**
* Deterministic initialiser.
*
* @param n the order of the DSA group.
* @param d the DSA private value.
* @param message the message being signed.
*/
void init(BigInteger n, BigInteger d, byte[] message);
/**
* Return the next valid value of K.
*
* @return a K value.
*/
BigInteger nextK();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy