From 7519bacebd39868c9970799ad41ede7892a4a68d Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Mon, 24 May 2021 19:47:33 +0700 Subject: Fix project files plus portability fixes --- crypto/src/util/Integers.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/src/util/Integers.cs') diff --git a/crypto/src/util/Integers.cs b/crypto/src/util/Integers.cs index b7bd25ce6..11045d9e3 100644 --- a/crypto/src/util/Integers.cs +++ b/crypto/src/util/Integers.cs @@ -6,8 +6,8 @@ namespace Org.BouncyCastle.Utilities { public abstract class Integers { - public static readonly uint BYTES = 4; - public static readonly uint SIZE = 32; + public const int NumBits = 32; + public const int NumBytes = 4; private static readonly byte[] DeBruijnTZ = { 0x00, 0x01, 0x02, 0x18, 0x03, 0x13, 0x06, 0x19, 0x16, 0x04, 0x14, 0x0A, -- cgit 1.4.1