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.
21 lines
611 B
21 lines
611 B
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math; |
|
|
|
namespace BestHTTP.SecureProtocol.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; } |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|