org.bouncycastle.util.Times Maven / Gradle / Ivy
package org.bouncycastle.util;
public final class Times
{
private static long NANOS_PER_MILLI = 1000000L;
public static long nanoTime()
{
return NANOS_PER_MILLI * System.currentTimeMillis();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy