summary refs log tree commit diff
path: root/crypto/src/util
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-10-05 23:17:40 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-10-05 23:17:40 +0700
commitf5c5119255ce14081009a3dc9ccc1427c78f47a3 (patch)
tree2afd90b47aee6697b359c9e066f1e2dbfea8f678 /crypto/src/util
parentUse generics in Enums (diff)
downloadBouncyCastle.NET-ed25519-f5c5119255ce14081009a3dc9ccc1427c78f47a3.tar.xz
Remove Times class
Diffstat (limited to 'crypto/src/util')
-rw-r--r--crypto/src/util/Times.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/crypto/src/util/Times.cs b/crypto/src/util/Times.cs
deleted file mode 100644
index 99a78d21a..000000000
--- a/crypto/src/util/Times.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-
-namespace Org.BouncyCastle.Utilities
-{
-    public sealed class Times
-    {
-        private static long NanosecondsPerTick = 100L;
-
-        public static long NanoTime()
-        {
-            return DateTime.UtcNow.Ticks * NanosecondsPerTick;
-        }
-    }
-}