diff options
Diffstat (limited to 'crypto/src/tls/ServerOnlyTlsAuthentication.cs')
-rw-r--r-- | crypto/src/tls/ServerOnlyTlsAuthentication.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto/src/tls/ServerOnlyTlsAuthentication.cs b/crypto/src/tls/ServerOnlyTlsAuthentication.cs new file mode 100644 index 000000000..5a8d59904 --- /dev/null +++ b/crypto/src/tls/ServerOnlyTlsAuthentication.cs @@ -0,0 +1,15 @@ +using System; + +namespace Org.BouncyCastle.Tls +{ + public abstract class ServerOnlyTlsAuthentication + : TlsAuthentication + { + public abstract void NotifyServerCertificate(TlsServerCertificate serverCertificate); + + public TlsCredentials GetClientCredentials(CertificateRequest certificateRequest) + { + return null; + } + } +} |