summary refs log tree commit diff
path: root/crypto/test
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-12-14 22:14:07 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-12-14 22:14:07 +0700
commit4397a321616777a3a3342b93e5ff975942d13c86 (patch)
tree31def6112b00962d08f058ec9c91c0dda798abb4 /crypto/test
parentAdd TODOs (diff)
downloadBouncyCastle.NET-ed25519-4397a321616777a3a3342b93e5ff975942d13c86.tar.xz
Refactoring in Pqc.Crypto.Lms
Diffstat (limited to 'crypto/test')
-rw-r--r--crypto/test/src/pqc/crypto/lms/test/HssTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/pqc/crypto/lms/test/HssTests.cs b/crypto/test/src/pqc/crypto/lms/test/HssTests.cs
index 29da1f8c6..9d5048b27 100644
--- a/crypto/test/src/pqc/crypto/lms/test/HssTests.cs
+++ b/crypto/test/src/pqc/crypto/lms/test/HssTests.cs
@@ -770,7 +770,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Lms.Tests
 
                         for (int t = keyPair.GetKeys().Count - 1; t >= 0; t--)
                         {
-                            LMSigParameters sigParameters = keyPair.GetKeys()[t].GetSigParameters();
+                            LMSigParameters sigParameters = keyPair.GetKeys()[t].SigParameters;
                             int mask = (1 << sigParameters.H) - 1;
                             qValues[t] = q & mask;
                             q >>= sigParameters.H;