123456789101112131415161718 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- namespace Org.BouncyCastle.Utilities
- {
- public sealed class Times
- {
- private static long NanosecondsPerTick = 100L;
- public static long NanoTime()
- {
- return DateTime.UtcNow.Ticks * NanosecondsPerTick;
- }
- }
- }
- #endif
|