1package org.bouncycastle.util;
2
3public class Integers
4{
5    public static int rotateLeft(int i, int distance)
6    {
7        return Integer.rotateLeft(i, distance);
8    }
9
10    public static int rotateRight(int i, int distance)
11    {
12        return Integer.rotateRight(i, distance);
13    }
14
15    public static Integer valueOf(int value)
16    {
17        return Integer.valueOf(value);
18    }
19}
20