DefaultEngine
abstract class DefaultEngine extends GMP (View source)
GMP Modular Exponentiation Engine
Constants
FAST_BITWISE |
Can Bitwise operations be done fast? |
ENGINE_DIR |
Engine Directory |
Properties
protected mixed | $value | Holds the BigInteger's value | from Engine |
protected bool | $is_negative | Holds the BigInteger's sign | from Engine |
protected | $precision | Precision | from Engine |
protected | $bitmask | Precision Bitmask | from Engine |
protected callable | $reduce | Recurring Modulo Function | from Engine |
static protected string | $modexpEngine | Modular Exponentiation Engine | from GMP |
static protected bool | $isValidEngine | Engine Validity Flag | from GMP |
static protected GMP | $zero | BigInteger(0) | from GMP |
static protected GMP | $one | BigInteger(1) | from GMP |
static protected GMP | $two | BigInteger(2) | from GMP |
static protected mixed | $primes | Primes > 2 and < 1000 | from GMP |
Methods
Converts a BigInteger to a hex string (eg. base-16).
Converts a BigInteger to a bit string (eg. base-2).
Sliding Window k-ary Modular Exponentiation
Performs some post-processing for randomRangePrime
Return the minimum BigInteger between an arbitrary number of BigIntegers.
Return the minimum BigInteger between an arbitrary number of BigIntegers.
Calculates the greatest common divisor and Bezout's identity.
Converts a BigInteger to a byte string (eg. base-256).
Details
in
GMP at line 110
__construct(mixed $x = 0, int $base = 10)
Default constructor
static
setModExpEngine(string $engine)
Sets engine type.
Throws an exception if the type is invalid
protected string
toBytesHelper()
Converts a BigInteger to a byte string (eg. base-256).
Negative numbers are saved as positive numbers, unless $twos_compliment is set to true, at which point, they're saved as two's compliment.
string
toHex(bool $twos_compliment = false)
Converts a BigInteger to a hex string (eg. base-16).
in
GMP at line 172
string
toBits(bool $twos_compliment = false)
Converts a BigInteger to a bit string (eg. base-2).
Negative numbers are saved as positive numbers, unless $twos_compliment is set to true, at which point, they're saved as two's compliment.
protected Engine|false
modInverseHelper(Engine $n)
Calculates modular inverses.
Say you have (30 mod 17 * x mod 17) mod 17 == 1. x can be found using modular inverses.
{@internal See {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf#page=21 HAC 14.64} for more information.}
string
serialize()
Serialize
Will be called, automatically, when serialize() is called on a BigInteger object.
unserialize(string $serialized)
Serialize
Will be called, automatically, when unserialize() is called on a BigInteger object.
string
__toString()
Converts a BigInteger to a base-10 number.
__debugInfo()
__debugInfo() magic method
Will be called, automatically, when print_r() or var_dump() are called
setPrecision(int $bits)
Set Precision
Some bitwise operations give different results depending on the precision being used. Examples include left shift, not, and rotates.
int
getPrecision()
Get Precision
Returns the precision if it exists, -1 if it doesn't
static protected Engine
setBitmask(int $bits)
Set Bitmask
Engine|string
bitwise_not()
Logical Not
static protected string
base256_lshift(string $x, int $shift)
Logical Left Shift
Shifts binary strings $shift bits, essentially multiplying by 2**$shift.
Engine
bitwise_leftRotate(int $shift)
Logical Left Rotate
Instead of the top x bits being dropped they're appended to the shifted bit string.
Engine
bitwise_rightRotate(int $shift)
Logical Right Rotate
Instead of the bottom x bits being dropped they're prepended to the shifted bit string.
static Engine[]
minMaxBits(int $bits)
Returns the smallest and largest n-bit number
int
getLength()
Return the size of a BigInteger in bits
int
getLengthInBytes()
Return the size of a BigInteger in bytes
static protected Engine
slidingWindow(Engine $x, Engine $e, Engine $n, string $class)
Sliding Window k-ary Modular Exponentiation
Based on {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf#page=27 HAC 14.85} / {@link http://math.libtomcrypt.com/files/tommath.pdf#page=210 MPM 7.7}. In a departure from those algorithims, however, this function performs a modular reduction after every multiplication and squaring operation. As such, this function has the same preconditions that the reductions being used do.
static Engine
random(int $size)
Generates a random number of a certain size
Bit length is equal to $size
static Engine
randomPrime(int $size)
Generates a random prime number of a certain size
Bit length is equal to $size
static protected bool|Engine
randomRangePrimeOuter(Engine $min, Engine $max)
Performs some pre-processing for randomRangePrime
static protected Engine
randomRangeHelper(Engine $min, Engine $max)
Generate a random number between a range
Returns a random number between $min and $max where $min and $max can be defined using one of the two methods:
BigInteger::randomRange($min, $max) BigInteger::randomRange($max, $min)
in
GMP at line 542
static protected bool|Engine
randomRangePrimeInner(Engine $x, Engine $min, Engine $max)
Performs some post-processing for randomRangePrime
protected int
setupIsPrime()
Sets the $t parameter for primality testing
in
GMP at line 607
protected bool
testPrimality(int $t)
Tests Primality
bool
isPrime(int|bool $t = false)
Checks a numer to see if it's prime
Assuming the $t parameter is not set, this function has an error rate of 2**-80. The main motivation for the $t parameter is distributability. BigInteger::randomPrime() can be distributed across multiple pageloads on a website instead of just one.
protected Engine
rootHelper(int $n)
Performs a few preliminary checks on root
in
GMP at line 620
protected Engine
rootInner(int $n)
Calculates the nth root of a biginteger.
Returns the nth root of a positive biginteger, where n defaults to 2
Engine
root(int $n = 2)
Calculates the nth root of a biginteger.
static protected Engine
minHelper(array $nums)
Return the minimum BigInteger between an arbitrary number of BigIntegers.
static protected Engine
maxHelper(array $nums)
Return the minimum BigInteger between an arbitrary number of BigIntegers.
in
GMP at line 683
callable
createRecurringModuloFunction()
Create Recurring Modulo Function
Sometimes it may be desirable to do repeated modulos with the same number outside of modular exponentiation
protected Engine
extendedGCDHelper(Engine $n, Engine $stop = null)
Calculates the greatest common divisor and Bezout's identity.
Engine[]
bitwise_split(int $split)
Bitwise Split
Splits BigInteger's into chunks of $split bits
protected Engine
bitwiseAndHelper(Engine $x)
Logical And
protected Engine
bitwiseOrHelper(Engine $x)
Logical Or
protected Engine
bitwiseXorHelper(Engine $x)
Logical Exclusive Or
in
GMP at line 97
static bool
isValidEngine()
Test for engine validity
in
GMP at line 135
protected
initialize(int $base)
Initialize a GMP BigInteger Engine instance
in
GMP at line 158
string
toString()
Converts a BigInteger to a base-10 number.
in
GMP at line 195
string
toBytes(bool $twos_compliment = false)
Converts a BigInteger to a byte string (eg. base-256).
in
GMP at line 218
GMP
add(GMP $y)
Adds two BigIntegers.
in
GMP at line 232
GMP
subtract(GMP $y)
Subtracts two BigIntegers.
in
GMP at line 246
GMP
multiply(GMP $x)
Multiplies two BigIntegers.
in
GMP at line 265
GMP
divide(GMP $y)
Divides two BigIntegers.
Returns an array whose first element contains the quotient and whose second element contains the "common residue". If the remainder would be positive, the "common residue" and the remainder are the same. If the remainder would be negative, the "common residue" is equal to the sum of the remainder and the divisor (basically, the "common residue" is the first positive modulo).
in
GMP at line 298
int
compare(GMP $y)
Compares two numbers.
Although one might think !$x->compare($y) means $x != $y, it, in fact, means the opposite. The reason for this is demonstrated thusly:
$x > $y: $x->compare($y) > 0 $x < $y: $x->compare($y) < 0 $x == $y: $x->compare($y) == 0
Note how the same comparison operator is used. If you want to test for equality, use $x->equals($y).
{@internal Could return $this->subtract($x), but that's not as fast as what we do do.}
in
GMP at line 318
bool
equals(GMP $x)
Tests the equality of two numbers.
If you need to see if one number is greater than or less than another number, use BigInteger::compare()
in
GMP at line 331
false|GMP
modInverse(GMP $n)
Calculates modular inverses.
Say you have (30 mod 17 * x mod 17) mod 17 == 1. x can be found using modular inverses.
in
GMP at line 350
GMP[]
extendedGCD(GMP $n)
Calculates the greatest common divisor and Bezout's identity.
Say you have 693 and 609. The GCD is 21. Bezout's identity states that there exist integers x and y such that 693x + 609y == 21. In point of fact, there are actually an infinite number of x and y combinations and which combination is returned is dependent upon which mode is in use. See {@link http://en.wikipedia.org/wiki/B%C3%A9zout%27s_identity Bezout's identity - Wikipedia} for more information.
in
GMP at line 369
GMP
gcd(GMP $n)
Calculates the greatest common divisor
Say you have 693 and 609. The GCD is 21.
in
GMP at line 381
GMP
abs()
Absolute value.
in
GMP at line 395
GMP
bitwise_and(GMP $x)
Logical And
in
GMP at line 409
GMP
bitwise_or(GMP $x)
Logical Or
in
GMP at line 423
GMP
bitwise_xor(GMP $x)
Logical Exclusive Or
in
GMP at line 439
GMP
bitwise_rightShift(int $shift)
Logical Right Shift
Shifts BigInteger's by $shift bits, effectively dividing by 2**$shift.
in
GMP at line 458
GMP
bitwise_leftShift(int $shift)
Logical Left Shift
Shifts BigInteger's by $shift bits, effectively multiplying by 2**$shift.
in
GMP at line 473
GMP
modPow(GMP $e, GMP $n)
Performs modular exponentiation.
in
GMP at line 487
GMP
powMod(GMP $e, GMP $n)
Performs modular exponentiation.
Alias for modPow().
in
GMP at line 499
protected GMP
powModInner(GMP $e, GMP $n)
Performs modular exponentiation.
in
GMP at line 513
protected GMP
normalize(GMP $result)
Normalize
Removes leading zeros and truncates (if necessary) to maintain the appropriate precision
in
GMP at line 566
static false|GMP
randomRangePrime(GMP $min, GMP $max)
Generate a random prime number between a range
If there's not a prime within the given range, false will be returned.
in
GMP at line 584
static GMP
randomRange(GMP $min, GMP $max)
Generate a random number between a range
Returns a random number between $min and $max where $min and $max can be defined using one of the two methods:
BigInteger::randomRange($min, $max) BigInteger::randomRange($max, $min)
in
GMP at line 596
protected
make_odd()
Make the current number odd
If the current number is odd it'll be unchanged. If it's even, one will be added to it.
in
GMP at line 633
GMP
pow(GMP $n)
Performs exponentiation.
in
GMP at line 647
static GMP
min(GMP ...$nums)
Return the minimum BigInteger between an arbitrary number of BigIntegers.
in
GMP at line 658
static GMP
max(GMP ...$nums)
Return the maximum BigInteger between an arbitrary number of BigIntegers.
in
GMP at line 670
bool
between(GMP $min, GMP $max)
Tests BigInteger to see if it is between two integers, inclusive
in
GMP at line 700
static int
scan1divide(GMP $r)
Scan for 1 and right shift by that amount
ie. $s = gmp_scan1($n, 0) and $r = gmp_div_q($n, gmp_pow(gmp_init('2'), $s));
in
GMP at line 712
bool
isOdd()
Is Odd?
in
GMP at line 722
bool
testBit($x)
Tests if a bit is set
in
GMP at line 732
bool
isNegative()
Is Negative?
in
GMP at line 744
GMP
negate()
Negate
Given $k, returns -$k