summary refs log tree commit diff
path: root/crypto/src/tls/TlsDHGroupVerifier.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2021-07-12 15:15:36 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2021-07-12 15:15:36 +0700
commit68c795fe81277f73aeb90d8ad4c6f4305f32c906 (patch)
tree59643344aafef91bbd4c4a3a7973deba3d837a00 /crypto/src/tls/TlsDHGroupVerifier.cs
parentTLS test tweaks (diff)
downloadBouncyCastle.NET-ed25519-68c795fe81277f73aeb90d8ad4c6f4305f32c906.tar.xz
Port of new TLS API from bc-java
Diffstat (limited to 'crypto/src/tls/TlsDHGroupVerifier.cs')
-rw-r--r--crypto/src/tls/TlsDHGroupVerifier.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto/src/tls/TlsDHGroupVerifier.cs b/crypto/src/tls/TlsDHGroupVerifier.cs
new file mode 100644
index 000000000..2fb208cc0
--- /dev/null
+++ b/crypto/src/tls/TlsDHGroupVerifier.cs
@@ -0,0 +1,15 @@
+using System;
+
+using Org.BouncyCastle.Tls.Crypto;
+
+namespace Org.BouncyCastle.Tls
+{
+    /// <summary>Interface for verifying explicit Diffie-Hellman group parameters.</summary>
+    public interface TlsDHGroupVerifier
+    {
+        /// <summary>Check whether the given DH group is acceptable for use.</summary>
+        /// <param name="dhGroup">the <see cref="DHGroup"/> to check.</param>
+        /// <returns>true if (and only if) the specified group is acceptable.</returns>
+        bool Accept(DHGroup dhGroup);
+    }
+}