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
472 B

using System;
using Org.BouncyCastle.Crypto.Parameters;
namespace Org.BouncyCastle.Crypto.Tls
{
public interface TlsSrpGroupVerifier
{
/**
* Check whether the given SRP group parameters are acceptable for use.
*
* @param group the {@link SRP6GroupParameters} to check
* @return true if (and only if) the specified group parameters are acceptable
*/
bool Accept(Srp6GroupParameters group);
}
}