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.
63 lines
2.1 KiB
63 lines
2.1 KiB
using System;
|
|
using System.Collections;
|
|
|
|
using Org.BouncyCastle.Math;
|
|
using Org.BouncyCastle.Tls.Crypto;
|
|
using Org.BouncyCastle.Utilities;
|
|
|
|
namespace Org.BouncyCastle.Tls
|
|
{
|
|
public class DefaultTlsSrpConfigVerifier
|
|
: TlsSrpConfigVerifier
|
|
{
|
|
private static readonly IList DefaultGroups = Platform.CreateArrayList();
|
|
|
|
static DefaultTlsSrpConfigVerifier()
|
|
{
|
|
DefaultGroups.Add(Srp6StandardGroups.rfc5054_1024);
|
|
DefaultGroups.Add(Srp6StandardGroups.rfc5054_1536);
|
|
DefaultGroups.Add(Srp6StandardGroups.rfc5054_2048);
|
|
DefaultGroups.Add(Srp6StandardGroups.rfc5054_3072);
|
|
DefaultGroups.Add(Srp6StandardGroups.rfc5054_4096);
|
|
DefaultGroups.Add(Srp6StandardGroups.rfc5054_6144);
|
|
DefaultGroups.Add(Srp6StandardGroups.rfc5054_8192);
|
|
}
|
|
|
|
// IList is (SRP6Group)
|
|
protected readonly IList m_groups;
|
|
|
|
/// <summary>Accept only the group parameters specified in RFC 5054 Appendix A.</summary>
|
|
public DefaultTlsSrpConfigVerifier()
|
|
: this(DefaultGroups)
|
|
{
|
|
}
|
|
|
|
/// <summary>Specify a custom set of acceptable group parameters.</summary>
|
|
/// <param name="groups">an <see cref="IList"/> of acceptable <see cref="Srp6Group"/>.</param>
|
|
public DefaultTlsSrpConfigVerifier(IList groups)
|
|
{
|
|
this.m_groups = Platform.CreateArrayList(groups);
|
|
}
|
|
|
|
public virtual bool Accept(TlsSrpConfig srpConfig)
|
|
{
|
|
foreach (Srp6Group group in m_groups)
|
|
{
|
|
if (AreGroupsEqual(srpConfig, group))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
protected virtual bool AreGroupsEqual(TlsSrpConfig a, Srp6Group b)
|
|
{
|
|
BigInteger[] ng = a.GetExplicitNG();
|
|
return AreParametersEqual(ng[0], b.N) && AreParametersEqual(ng[1], b.G);
|
|
}
|
|
|
|
protected virtual bool AreParametersEqual(BigInteger a, BigInteger b)
|
|
{
|
|
return a == b || a.Equals(b);
|
|
}
|
|
}
|
|
}
|
|
|