|
Bouncy Castle Cryptography Library 1.86 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.bouncycastle.util.BigIntegers
BigInteger utilities.
| Nested Class Summary | |
static class |
BigIntegers.Cache
|
| Field Summary | |
static java.math.BigInteger |
ONE
|
static java.math.BigInteger |
TWO
|
static java.math.BigInteger |
ZERO
|
| Constructor Summary | |
BigIntegers()
|
|
| Method Summary | |
static boolean |
areSecretValuesEqual(int maxLen,
java.math.BigInteger a,
java.math.BigInteger b)
Compare two non-negative values for equality without an early exit. |
static byte[] |
asUnsignedByteArray(java.math.BigInteger value)
Return the passed in value as an unsigned byte array. |
static void |
asUnsignedByteArray(java.math.BigInteger value,
byte[] buf,
int off,
int len)
Write the passed in value as unsigned bytes to the specified buffer range, padded with leading zeros as necessary. |
static byte[] |
asUnsignedByteArray(int length,
java.math.BigInteger value)
Return the passed in value as an unsigned byte array of the specified length, padded with leading zeros as necessary.. |
static byte |
byteValueExact(java.math.BigInteger x)
|
static java.math.BigInteger |
createBlindedExponent(java.math.BigInteger exponent,
java.math.BigInteger groupOrder,
java.security.SecureRandom random)
Return a private exponent randomised for use in a variable-time modular exponentiation. |
static java.math.BigInteger |
createRandomBigInteger(int bitLength,
java.security.SecureRandom random)
Return a positive BigInteger in the range of 0 to 2**bitLength - 1. |
static java.math.BigInteger |
createRandomInRange(java.math.BigInteger min,
java.math.BigInteger max,
java.security.SecureRandom random)
Return a random BigInteger not less than 'min' and not greater than 'max' |
static java.math.BigInteger |
createRandomPrime(int bitLength,
int certainty,
java.security.SecureRandom random)
Return a prime number candidate of the specified bit length. |
static java.math.BigInteger |
fromUnsignedByteArray(byte[] buf)
|
static java.math.BigInteger |
fromUnsignedByteArray(byte[] buf,
int off,
int length)
|
static int |
getUnsignedByteLength(java.math.BigInteger n)
|
static boolean |
hasAnySmallFactors(java.math.BigInteger x)
|
static int |
intValueExact(java.math.BigInteger x)
|
static long |
longValueExact(java.math.BigInteger x)
|
static java.math.BigInteger |
modAdd(java.math.BigInteger M,
java.math.BigInteger X,
java.math.BigInteger Y)
Return (X + Y) mod M for X and Y already in the range [0, M). |
static java.math.BigInteger |
modMult(java.math.BigInteger M,
java.math.BigInteger X,
java.math.BigInteger Y)
Return (X * Y) mod M for an odd M and X, Y already in the range [0, M), by Montgomery multiplication over a fixed number of words. |
static java.math.BigInteger |
modOddInverse(java.math.BigInteger M,
java.math.BigInteger X)
|
static java.math.BigInteger |
modOddInverseVar(java.math.BigInteger M,
java.math.BigInteger X)
|
static boolean |
modOddIsCoprime(java.math.BigInteger M,
java.math.BigInteger X)
|
static boolean |
modOddIsCoprimeVar(java.math.BigInteger M,
java.math.BigInteger X)
|
static java.math.BigInteger |
modSubtract(java.math.BigInteger M,
java.math.BigInteger X,
java.math.BigInteger Y)
Return (X - Y) mod M for X and Y already in the range [0, M). |
static short |
shortValueExact(java.math.BigInteger x)
|
static void |
writeUnsignedByteArray(java.io.OutputStream out,
java.math.BigInteger n)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
public static final java.math.BigInteger ZERO
public static final java.math.BigInteger ONE
public static final java.math.BigInteger TWO
| Constructor Detail |
public BigIntegers()
| Method Detail |
public static byte[] asUnsignedByteArray(java.math.BigInteger value)
value - the value to be converted.
public static byte[] asUnsignedByteArray(int length,
java.math.BigInteger value)
length - the fixed length of the resultvalue - the value to be converted.
public static void asUnsignedByteArray(java.math.BigInteger value,
byte[] buf,
int off,
int len)
value - the value to be converted.buf - the buffer to which the value is written.off - the start offset in array buf at which the data is written.len - the fixed length of data written (possibly padded with leading zeros).
public static java.math.BigInteger createRandomInRange(java.math.BigInteger min,
java.math.BigInteger max,
java.security.SecureRandom random)
min - the least value that may be generatedmax - the greatest value that may be generatedrandom - the source of randomness
public static java.math.BigInteger fromUnsignedByteArray(byte[] buf)
public static java.math.BigInteger fromUnsignedByteArray(byte[] buf,
int off,
int length)
public static byte byteValueExact(java.math.BigInteger x)
public static short shortValueExact(java.math.BigInteger x)
public static int intValueExact(java.math.BigInteger x)
public static long longValueExact(java.math.BigInteger x)
public static boolean areSecretValuesEqual(int maxLen,
java.math.BigInteger a,
java.math.BigInteger b)
Fixed-width encoding drops the two's-complement sign byte that BigInteger.toByteArray()
prepends when the most-significant bit is set: without that, two values could serialise to
different lengths (e.g. 256 vs 257 bytes for a 2048-bit value) purely according to that high
bit, and the variable-time comparison would leak it. This is not perfectly constant-time —
has no constant-time serialisation, so the underlying
still runs in time proportional to each value's magnitude — but the
comparison no longer differs in length on the value's high bit. Intended for secret key
material (RSA and the CRT factors, DSA/DH/ElGamal/GOST , EC ),
which are all non-negative; the temporary unsigned encodings holding that secret material are
zeroed before returning.
Both arguments must be non-null and non-negative; a negative value does not produce a meaningful
result (and may throw IllegalArgumentException), and a null value throws
NullPointerException.
maxLen - the public unsigned byte length both values are encoded to (e.g. from a group
order or modulus).a - the first value, non-null and non-negative.b - the second value, non-null and non-negative.
public static boolean hasAnySmallFactors(java.math.BigInteger x)
public static java.math.BigInteger modAdd(java.math.BigInteger M,
java.math.BigInteger X,
java.math.BigInteger Y)
Use this rather than when either operand is secret. A reduction short-circuits when the value it is given is already less than the modulus, so a sum that crosses the top of M is distinguishable from one that does not. Where the other operand is public that difference is a threshold predicate on the secret one, and a public operand the caller does not control turns repeated observations into a search over the secret.
M - the modulus, which must be positive.X - a value in the range [0, M).Y - a value in the range [0, M).
public static java.math.BigInteger modSubtract(java.math.BigInteger M,
java.math.BigInteger X,
java.math.BigInteger Y)
Use this rather than when either operand is secret. A negative value costs the reduction more work than a non-negative one, so whether the difference underflowed is distinguishable, and that is a comparison between the two operands - which, where one of them is public, is a threshold predicate on the secret one.
M - the modulus, which must be positive.X - a value in the range [0, M).Y - a value in the range [0, M).
public static java.math.BigInteger modMult(java.math.BigInteger M,
java.math.BigInteger X,
java.math.BigInteger Y)
Use this rather than when either operand is secret. The product
is up to twice the width of M, so the reduction is a real division rather than the single
conditional subtraction modAdd(BigInteger, BigInteger, BigInteger) needs, and how
much work it does depends on the quotient - which is to say on the operands.
The quantity derived from M alone (R squared mod M, where R is 2 raised to the width of M rounded up to a word boundary) is computed with BigInteger, since M is the public modulus.
M - the modulus, which must be odd and positive.X - a value in the range [0, M).Y - a value in the range [0, M).
public static java.math.BigInteger modOddInverse(java.math.BigInteger M,
java.math.BigInteger X)
public static java.math.BigInteger modOddInverseVar(java.math.BigInteger M,
java.math.BigInteger X)
public static boolean modOddIsCoprime(java.math.BigInteger M,
java.math.BigInteger X)
public static boolean modOddIsCoprimeVar(java.math.BigInteger M,
java.math.BigInteger X)
public static int getUnsignedByteLength(java.math.BigInteger n)
public static java.math.BigInteger createRandomBigInteger(int bitLength,
java.security.SecureRandom random)
bitLength - maximum bit length for the generated BigInteger.random - a source of randomness.
public static java.math.BigInteger createBlindedExponent(java.math.BigInteger exponent,
java.math.BigInteger groupOrder,
java.security.SecureRandom random)
BigInteger.modPow(BigInteger, BigInteger) carries no constant-time guarantee and its
running time varies with the exponent, so where an exponent carries long-term secret material
and the base is chosen by a peer, the exponent should be randomised before each use. This
returns exponent + c * groupOrder for a small random c, which does
not change the result of the exponentiation because
base groupOrder = 1.
The caller owns that premise, and it is the easy thing to get wrong. The order must be one the base actually has: Pass the subgroup order q only when the base is known to lie in that subgroup - a domain generator g chosen with g q = 1, or a peer value that has been verified with v q = 1. Pass p-1 for a caller- or peer-supplied base that has only been range-checked. Any value coprime to a prime p satisfies base p-1 = 1 by Fermat, so this always holds. Pass phi(n) for a composite modulus, which only the private-key holder can do. Passing q for a base outside the order-q subgroup silently returns the wrong answer for an odd multiple - for a safe prime that is roughly half of the range-valid bases - and no known-answer test will catch it, since the randomisation is otherwise result-preserving.
The multiple is small (between 128 and 255 times groupOrder), so it lengthens the exponent by about eight bits rather than doubling the work.
exponent - the private exponent to randomise.groupOrder - an order the base is raised to giving 1 - see above.random - a source of randomness.
public static java.math.BigInteger createRandomPrime(int bitLength,
int certainty,
java.security.SecureRandom random)
bitLength - bit length for the generated BigInteger.random - a source of randomness.
public static void writeUnsignedByteArray(java.io.OutputStream out,
java.math.BigInteger n)
throws java.io.IOException
java.io.IOException
|
Bouncy Castle Cryptography Library 1.86 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||