summary refs log tree commit diff
path: root/crypto/src/pqc/crypto/bike/BikeEngine.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/pqc/crypto/bike/BikeEngine.cs')
-rw-r--r--crypto/src/pqc/crypto/bike/BikeEngine.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/src/pqc/crypto/bike/BikeEngine.cs b/crypto/src/pqc/crypto/bike/BikeEngine.cs
index 94f073bbb..f7c126c66 100644
--- a/crypto/src/pqc/crypto/bike/BikeEngine.cs
+++ b/crypto/src/pqc/crypto/bike/BikeEngine.cs
@@ -1,5 +1,6 @@
 using System;
 using System.Diagnostics;
+
 using Org.BouncyCastle.Crypto;
 using Org.BouncyCastle.Crypto.Digests;
 using Org.BouncyCastle.Security;
@@ -22,7 +23,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Bike
         private readonly int t;
 
         //the shared secret size
-        private readonly int l;
+        //private readonly int l;
 
         // number of iterations in BGF decoder
         private readonly int nbIter;
@@ -39,7 +40,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Bike
             this.r = r;
             this.w = w;
             this.t = t;
-            this.l = l;
+            //this.l = l;
             this.nbIter = nbIter;
             this.tau = tau;
             this.hw = this.w / 2;