summary refs log tree commit diff
path: root/crypto/src/util/Times.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/util/Times.cs')
-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;
-        }
-    }
-}