what-the-bank/sources/org/bouncycastle/util/Integers.java

17 lines
374 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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);
}
}