2 files changed, 2 insertions, 3 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;
}
}
diff --git a/crypto/test/src/pqc/crypto/test/BikeVectorTest.cs b/crypto/test/src/pqc/crypto/test/BikeVectorTest.cs
index e4e6e5adc..723f6b554 100644
--- a/crypto/test/src/pqc/crypto/test/BikeVectorTest.cs
+++ b/crypto/test/src/pqc/crypto/test/BikeVectorTest.cs
@@ -26,8 +26,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Tests
{
"PQCkemKAT_BIKE_3114.rsp",
"PQCkemKAT_BIKE_6198.rsp",
- // FIXME
- //"PQCkemKAT_BIKE_10276.rsp"
+ "PQCkemKAT_BIKE_10276.rsp"
};
[Test]
|