diff options
author | David Hook <dgh@cryptoworkshop.com> | 2022-07-26 18:56:57 +1000 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2022-07-26 18:56:57 +1000 |
commit | 8bf22adb246bc7828d7aabe2077ded6993f79398 (patch) | |
tree | 52da3768751fffdfee0e041a23bcac146efaceda /crypto/test/src/pqc | |
parent | Refactoring Whirlpool (diff) | |
download | BouncyCastle.NET-ed25519-8bf22adb246bc7828d7aabe2077ded6993f79398.tar.xz |
move KEMExtractor to KemExtractor
Diffstat (limited to 'crypto/test/src/pqc')
-rw-r--r-- | crypto/test/src/pqc/crypto/test/NtruPrimeVectorTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/pqc/crypto/test/NtruPrimeVectorTest.cs b/crypto/test/src/pqc/crypto/test/NtruPrimeVectorTest.cs index 29d5292fa..f42135674 100644 --- a/crypto/test/src/pqc/crypto/test/NtruPrimeVectorTest.cs +++ b/crypto/test/src/pqc/crypto/test/NtruPrimeVectorTest.cs @@ -122,7 +122,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Tests Assert.True(Arrays.AreEqual(ss, secret), name + " " + count + ": kem_enc secret"); // Decapsulation - NtruPrimeKEMExtractor ntruDecCipher = new NtruPrimeKEMExtractor(privParams); + NtruPrimeKemExtractor ntruDecCipher = new NtruPrimeKemExtractor(privParams); byte[] dec_key = ntruDecCipher.ExtractSecret(generatedCT); // Check decapsulation secret |