blob: f52baf52b946ba7f007f9c3cddd51d9530079a3f [file] [log] [blame]
package org.bouncycastle.util;
public class Integers
{
public static int rotateLeft(int i, int distance)
{
return Integer.rotateLeft(i, distance);
}
public static int rotateRight(int i, int distance)
{
return Integer.rotateRight(i, distance);
}
public static Integer valueOf(int value)
{
return Integer.valueOf(value);
}
}