diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-07-25 19:58:02 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-07-25 19:58:02 +0700 |
commit | d8187def99004d5be735c9694c4f08f7e5fa0221 (patch) | |
tree | ec8b18e46f850f887fe2a646bad2b6a24d35b782 /crypto/src/tls/TlsPskExternal.cs | |
parent | Fix Truncate method (diff) | |
download | BouncyCastle.NET-ed25519-d8187def99004d5be735c9694c4f08f7e5fa0221.tar.xz |
TLS 1.3 client API for external PSKs
Diffstat (limited to '')
-rw-r--r-- | crypto/src/tls/TlsPskExternal.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crypto/src/tls/TlsPskExternal.cs b/crypto/src/tls/TlsPskExternal.cs new file mode 100644 index 000000000..1e7b717e9 --- /dev/null +++ b/crypto/src/tls/TlsPskExternal.cs @@ -0,0 +1,9 @@ +using System; + +namespace Org.BouncyCastle.Tls +{ + public interface TlsPskExternal + : TlsPsk + { + } +} |