package org.bouncycastle.crypto;
import java.math.BigInteger;
An "extended" interface for classes implementing DSA-style algorithms, that provides access to
the group order.
/**
* 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.
/**
* Get the order of the group that the r, s values in signatures belong to.
*/
public BigInteger getOrder();
}