9 lines
165 B
C#
9 lines
165 B
C#
using Org.BouncyCastle.Crypto.Parameters;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Tls;
|
|
|
|
public interface TlsSrpGroupVerifier
|
|
{
|
|
bool Accept(Srp6GroupParameters group);
|
|
}
|