You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
441 B
17 lines
441 B
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; }
|
|
}
|
|
}
|
|
|