blob: 15b55787aada172276cffce3c769cf9118adc214 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Crypto
{
/// <summary>
/// An "extended" interface for classes implementing DSA-style algorithms, that provides access
/// to the group order.
/// </summary>
public interface IDsaExt
: IDsa
{
/// <summary>The order of the group that the r, s values in signatures belong to.</summary>
BigInteger Order { get; }
}
}
|