17 lines
374 B
Java
17 lines
374 B
Java
|
package org.bouncycastle.util;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class Integers {
|
||
|
public static Integer valueOf(int i) {
|
||
|
return Integer.valueOf(i);
|
||
|
}
|
||
|
|
||
|
public static int rotateRight(int i, int i2) {
|
||
|
return Integer.rotateRight(i, i2);
|
||
|
}
|
||
|
|
||
|
public static int rotateLeft(int i, int i2) {
|
||
|
return Integer.rotateLeft(i, i2);
|
||
|
}
|
||
|
}
|