init commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Utilities;
|
||||
|
||||
public sealed class Times
|
||||
{
|
||||
private static long NanosecondsPerTick = 100L;
|
||||
|
||||
public static long NanoTime()
|
||||
{
|
||||
return DateTime.UtcNow.Ticks * NanosecondsPerTick;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user