Bouncy Castle Cryptography Library 1.77.0

org.bouncycastle.util
Class Integers

java.lang.Object
  |
  +--org.bouncycastle.util.Integers

public class Integers
extends java.lang.Object


Field Summary
static int BYTES
           
static int SIZE
           
 
Constructor Summary
Integers()
           
 
Method Summary
static int bitCount(int i)
           
static int highestOneBit(int i)
           
static int lowestOneBit(int i)
           
static int numberOfLeadingZeros(int i)
           
static int numberOfTrailingZeros(int i)
           
static int reverse(int i)
           
static int reverseBytes(int i)
           
static int rotateLeft(int i, int distance)
           
static int rotateRight(int i, int distance)
           
static java.lang.Integer valueOf(int value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

BYTES

public static final int BYTES

SIZE

public static final int SIZE
Constructor Detail

Integers

public Integers()
Method Detail

bitCount

public static int bitCount(int i)

highestOneBit

public static int highestOneBit(int i)

lowestOneBit

public static int lowestOneBit(int i)

numberOfLeadingZeros

public static int numberOfLeadingZeros(int i)

numberOfTrailingZeros

public static int numberOfTrailingZeros(int i)

reverse

public static int reverse(int i)

reverseBytes

public static int reverseBytes(int i)

rotateLeft

public static int rotateLeft(int i,
                             int distance)

rotateRight

public static int rotateRight(int i,
                              int distance)

valueOf

public static java.lang.Integer valueOf(int value)

Bouncy Castle Cryptography Library 1.77.0