org.bouncycastle.util.Longs Maven / Gradle / Ivy
package org.bouncycastle.util;
public class Longs
{
public static long reverse(long i)
{
return Long.reverse(i);
}
public static long reverseBytes(long i)
{
return Long.reverseBytes(i);
}
public static long rotateLeft(long i, int distance)
{
return Long.rotateLeft(i, distance);
}
public static long rotateRight(long i, int distance)
{
return Long.rotateRight(i, distance);
}
public static Long valueOf(long value)
{
return Long.valueOf(value);
}
}