summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src')
-rw-r--r--crypto/src/pqc/crypto/bike/BikeRandomGenerator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/pqc/crypto/bike/BikeRandomGenerator.cs b/crypto/src/pqc/crypto/bike/BikeRandomGenerator.cs
index 4eea5774a..4d9a90252 100644
--- a/crypto/src/pqc/crypto/bike/BikeRandomGenerator.cs
+++ b/crypto/src/pqc/crypto/bike/BikeRandomGenerator.cs
@@ -84,7 +84,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Bike
         {
             byte[] output = new byte[4];
             digest.Output(output, 0, output.Length);
-            int tmp = Pack.LE_To_UInt16(output, 0);
+            int tmp = (int)Pack.LE_To_UInt32(output, 0);
             return tmp;
         }
     }