summary refs log tree commit diff
path: root/crypto/src/util/Bytes.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/util/Bytes.cs')
-rw-r--r--crypto/src/util/Bytes.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/src/util/Bytes.cs b/crypto/src/util/Bytes.cs
new file mode 100644
index 000000000..0d73d67ae
--- /dev/null
+++ b/crypto/src/util/Bytes.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace Org.BouncyCastle.Utilities
+{
+    public abstract class Bytes
+    {
+        public static readonly uint BYTES = 1;
+        public static readonly uint SIZE = 8;
+    }
+}