diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-03-16 22:12:00 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-03-16 22:12:00 +0700 |
commit | e7844d7f83a4d5321f02c9f169cd206149e9a184 (patch) | |
tree | c818b2ec2026b4db29e28c9e3dc6891cef41eab4 /crypto/src/tls/TlsHandshakeHash.cs | |
parent | Refactoring (diff) | |
download | BouncyCastle.NET-ed25519-e7844d7f83a4d5321f02c9f169cd206149e9a184.tar.xz |
DTLS: delayed handshake hash update
- avoid clone of handshake hash
Diffstat (limited to 'crypto/src/tls/TlsHandshakeHash.cs')
-rw-r--r-- | crypto/src/tls/TlsHandshakeHash.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/tls/TlsHandshakeHash.cs b/crypto/src/tls/TlsHandshakeHash.cs index aa33c680d..88aeaaa32 100644 --- a/crypto/src/tls/TlsHandshakeHash.cs +++ b/crypto/src/tls/TlsHandshakeHash.cs @@ -20,7 +20,7 @@ namespace Org.BouncyCastle.Tls void SealHashAlgorithms(); - TlsHandshakeHash StopTracking(); + void StopTracking(); TlsHash ForkPrfHash(); |