blob: da33337a5d67137250fbecef8b3baf2d6b384038 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.crypto;
import java.math.BigInteger;
/**
* An "extended" interface for classes implementing DSA-style algorithms, that provides access to
* the group order.
* @hide This class is not part of the Android public SDK API
*/
public interface DSAExt
extends DSA
{
/**
* Get the order of the group that the r, s values in signatures belong to.
*/
public BigInteger getOrder();
}