summary refs log tree commit diff
path: root/crypto/src/pqc
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2022-07-26 18:56:57 +1000
committerDavid Hook <dgh@cryptoworkshop.com>2022-07-26 18:56:57 +1000
commit8bf22adb246bc7828d7aabe2077ded6993f79398 (patch)
tree52da3768751fffdfee0e041a23bcac146efaceda /crypto/src/pqc
parentRefactoring Whirlpool (diff)
downloadBouncyCastle.NET-ed25519-8bf22adb246bc7828d7aabe2077ded6993f79398.tar.xz
move KEMExtractor to KemExtractor
Diffstat (limited to 'crypto/src/pqc')
-rw-r--r--crypto/src/pqc/crypto/ntruprime/NtruPrimeKemExtractor.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/pqc/crypto/ntruprime/NtruPrimeKemExtractor.cs b/crypto/src/pqc/crypto/ntruprime/NtruPrimeKemExtractor.cs
index 9e3c65b10..7ae67db50 100644
--- a/crypto/src/pqc/crypto/ntruprime/NtruPrimeKemExtractor.cs
+++ b/crypto/src/pqc/crypto/ntruprime/NtruPrimeKemExtractor.cs
@@ -3,12 +3,12 @@ using Org.BouncyCastle.Pqc.Crypto.Frodo;
 
 namespace Org.BouncyCastle.Pqc.Crypto.NtruPrime
 {
-    public class NtruPrimeKEMExtractor : IEncapsulatedSecretExtractor
+    public class NtruPrimeKemExtractor : IEncapsulatedSecretExtractor
     {
         private NtruPrimeEngine _pEngine;
         private NtruPrimeKeyParameters _pKey;
 
-        public NtruPrimeKEMExtractor(NtruPrimeKeyParameters privParams)
+        public NtruPrimeKemExtractor(NtruPrimeKeyParameters privParams)
         {
             this._pKey = privParams;
             InitCipher(_pKey.Parameters);