diff options
Diffstat (limited to 'crypto/src/util/Bytes.cs')
-rw-r--r-- | crypto/src/util/Bytes.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/util/Bytes.cs b/crypto/src/util/Bytes.cs index 0d73d67ae..ecde85dde 100644 --- a/crypto/src/util/Bytes.cs +++ b/crypto/src/util/Bytes.cs @@ -4,7 +4,7 @@ namespace Org.BouncyCastle.Utilities { public abstract class Bytes { - public static readonly uint BYTES = 1; - public static readonly uint SIZE = 8; + public const int NumBits = 8; + public const int NumBytes = 1; } } |