blob: b60996194642c84c751ad4bc23a53d3130f9af93 [file] [log] [blame]
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();
}