Skip to content

Commit 67d33a2

Browse files
committed
Check DH standard group lookup
1 parent e88f68a commit 67d33a2

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

crypto/test/src/tls/crypto/test/BcTlsCryptoTest.cs

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
using NUnit.Framework;
66

7+
using Org.BouncyCastle.Math;
78
using Org.BouncyCastle.Security;
89
using Org.BouncyCastle.Tls.Crypto.Impl.BC;
910
using Org.BouncyCastle.Tls.Tests;
@@ -183,7 +184,15 @@ public void TestDHDomain()
183184
IList groups = new TestTlsDHGroupVerifier().Groups;
184185
foreach (DHGroup dhGroup in groups)
185186
{
186-
int namedGroup = TlsDHUtilities.GetNamedGroupForDHParameters(dhGroup.P, dhGroup.G);
187+
BigInteger p = dhGroup.P, g = dhGroup.G;
188+
189+
/*
190+
* DefaultTlsDHGroupVerifier default groups are configured from DHStandardGroups, so
191+
* we expect to recover the exact instance here.
192+
*/
193+
Assert.AreSame(dhGroup, TlsDHUtilities.GetStandardGroupForDHParameters(p, g));
194+
195+
int namedGroup = TlsDHUtilities.GetNamedGroupForDHParameters(p, g);
187196

188197
// Already tested the named groups
189198
if (NamedGroup.RefersToASpecificFiniteField(namedGroup))

0 commit comments

Comments
 (0)