summary refs log tree commit diff
path: root/crypto/src/pqc/crypto/falcon/FalconFFT.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/pqc/crypto/falcon/FalconFFT.cs')
-rw-r--r--crypto/src/pqc/crypto/falcon/FalconFFT.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/src/pqc/crypto/falcon/FalconFFT.cs b/crypto/src/pqc/crypto/falcon/FalconFFT.cs
index aa862cc23..97152dcd5 100644
--- a/crypto/src/pqc/crypto/falcon/FalconFFT.cs
+++ b/crypto/src/pqc/crypto/falcon/FalconFFT.cs
@@ -4,11 +4,11 @@ namespace Org.BouncyCastle.Pqc.Crypto.Falcon
 {
     class FalconFFT
     {
-        FPREngine fpre;
+        FprEngine fpre;
         internal FalconFFT() {
-            fpre = new FPREngine();
+            fpre = new FprEngine();
         }
-        internal FalconFFT(FPREngine fprengine) {
+        internal FalconFFT(FprEngine fprengine) {
             this.fpre = fprengine;
         }