org.bouncycastle.crypto.DSAExt Maven / Gradle / Ivy
package org.bouncycastle.crypto;
import java.math.BigInteger;
/**
* An "extended" interface for classes implementing DSA-style algorithms, that provides access to
* the group order.
*/
public interface DSAExt
extends DSA
{
/**
* Get the order of the group that the r, s values in signatures belong to.
*/
public BigInteger getOrder();
}