using System;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Crypto
{
///
/// An "extended" interface for classes implementing DSA-style algorithms, that provides access
/// to the group order.
///
public interface IDsaExt
: IDsa
{
/// The order of the group that the r, s values in signatures belong to.
BigInteger Order { get; }
}
}