diff options
Diffstat (limited to 'crypto/src/pqc/math/linearalgebra/Utils.cs')
-rw-r--r-- | crypto/src/pqc/math/linearalgebra/Utils.cs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/crypto/src/pqc/math/linearalgebra/Utils.cs b/crypto/src/pqc/math/linearalgebra/Utils.cs deleted file mode 100644 index eb2760f82..000000000 --- a/crypto/src/pqc/math/linearalgebra/Utils.cs +++ /dev/null @@ -1,20 +0,0 @@ - -namespace Org.BouncyCastle.Pqc.Math.LinearAlgebra -{ - class Utils - { - internal static int UnsignedRightBitShiftInt(int a, int b) - { - uint tmp = (uint) a; - tmp >>= b; - return (int) tmp; - } - - internal static long UnsignedRightBitShiftLong(long a, int b) - { - ulong tmp = (ulong)a; - tmp >>= b; - return (long) tmp; - } - } -} |