blob: cbae4a37594fd580ce30cb2822eb548c20a157d6 [file] [log] [blame]
package org.bouncycastle.util;
/**
* Utility methods for ints.
*/
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);
}
}