Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Times.java « util « bouncycastle « org « jdk1.4 « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d21518fac11774f6d05f3235ea2586d70cf7c922 (plain)
1
2
3
4
5
6
7
8
9
10
11
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();
    }
}