summary refs log tree commit diff
path: root/crypto/src/tls/TlsSrpIdentity.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/tls/TlsSrpIdentity.cs')
-rw-r--r--crypto/src/tls/TlsSrpIdentity.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/crypto/src/tls/TlsSrpIdentity.cs b/crypto/src/tls/TlsSrpIdentity.cs
new file mode 100644
index 000000000..c0492e4a2
--- /dev/null
+++ b/crypto/src/tls/TlsSrpIdentity.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace Org.BouncyCastle.Tls
+{
+    /// <summary>Processor interface for an SRP identity.</summary>
+    public interface TlsSrpIdentity
+    {
+        byte[] GetSrpIdentity();
+
+        byte[] GetSrpPassword();
+    }
+}