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

Times.java « util « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71d49e31d1997483bd41092027c1236d1098411c (plain)
1
2
3
4
5
6
7
8
9
package org.spongycastle.util;

public final class Times
{
    public static long nanoTime()
    {
        return System.nanoTime();
    }
}