File tree 1 file changed +10
-1
lines changed
crypto/test/src/tls/crypto/test
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
using NUnit . Framework ;
6
6
7
+ using Org . BouncyCastle . Math ;
7
8
using Org . BouncyCastle . Security ;
8
9
using Org . BouncyCastle . Tls . Crypto . Impl . BC ;
9
10
using Org . BouncyCastle . Tls . Tests ;
@@ -183,7 +184,15 @@ public void TestDHDomain()
183
184
IList groups = new TestTlsDHGroupVerifier ( ) . Groups ;
184
185
foreach ( DHGroup dhGroup in groups )
185
186
{
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 ) ;
187
196
188
197
// Already tested the named groups
189
198
if ( NamedGroup . RefersToASpecificFiniteField ( namedGroup ) )
You can’t perform that action at this time.
0 commit comments