diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-07-25 15:28:56 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-07-25 15:28:56 +0700 |
commit | b4aef72b238c1b655594c59ec7d1f42ef5d58676 (patch) | |
tree | d82e13a439898f02427ef65839632afa9d78548e /crypto/src/tls | |
parent | Only GetSessionToResume if pre-1.3 offered (diff) | |
download | BouncyCastle.NET-ed25519-b4aef72b238c1b655594c59ec7d1f42ef5d58676.tar.xz |
Fix Truncate method
Diffstat (limited to 'crypto/src/tls')
-rw-r--r-- | crypto/src/tls/TlsUtilities.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/tls/TlsUtilities.cs b/crypto/src/tls/TlsUtilities.cs index 9a8665cf5..252c385e1 100644 --- a/crypto/src/tls/TlsUtilities.cs +++ b/crypto/src/tls/TlsUtilities.cs @@ -4647,7 +4647,7 @@ namespace Org.BouncyCastle.Tls internal static short[] Truncate(short[] a, int n) { - if (n < a.Length) + if (n >= a.Length) return a; short[] t = new short[n]; |