Times.cs 354 B

123456789101112131415161718
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. namespace Org.BouncyCastle.Utilities
  4. {
  5. public sealed class Times
  6. {
  7. private static long NanosecondsPerTick = 100L;
  8. public static long NanoTime()
  9. {
  10. return DateTime.UtcNow.Ticks * NanosecondsPerTick;
  11. }
  12. }
  13. }
  14. #endif