Overview of the RandomTools:-BlumBlumShub Subpackage
Calling Sequence
Description
List of RandomTools:-BlumBlumShub Subpackage Commands
Examples
RandomTools:-BlumBlumShub:-function(arguments)
function(arguments)
The RandomTools:-BlumBlumShub subpackage contains functions for creating pseudo-random number generators using the Blum, Blum, and Shub algorithm. The integers x[1], x[2], ... are generated using the quadratic recurrence
xk+1=xk2modn
where n is a product of two primes and x0, the seed, may be specified by the user. They use the least significant bits of the x's to form the random numbers.
The Blum, Blum, and Shub generator is intended to be used for cryptographic applications. For this purpose it uses very large primes, primes of length 308, 462 or 616 digits so that n cannot be factored. It extracts the log[2](log[2](n)) least significant bits of the x's which are known to be cryptographically secure. The primes used have certain properties so that x0 can be chosen so that the sequence of bits generated will have a provably very long period.
Each command in the RandomTools:-BlumBlumShub subpackage can be accessed by using either the long form or the short form of the command name in the command calling sequence.
The long form, RandomTools:-BlumBlumShub:-command, is always available. The short form can be used after loading the package.
NewBitGenerator
NewGenerator
To display the help page for a particular BlumBlumShub command, see Getting Help with a Command in a Package.
with⁡RandomTools:-BlumBlumShub
NewBitGenerator,NewGenerator
The NewBitGenerator command outputs cryptographically secure random bits. It takes as input a random seed S which can be used as a secret key in an encryption protocol.
S≔749174032174023174398217651252100347882175301621678436520:
B≔NewBitGenerator⁡S,numbits=10:
B⁡
1,0,1,1,0,0,1,1,1,0
1,0,1,1,1,1,0,0,1,1
Suppose Alice wants to send a message M to Bob and suppose Alice wants to encrypt the message so that no one else can read it. Suppose
M≔0,1,1,1,0,1,1,0,0,1,1,0,0,0,1,1,0,1,0,1
is the 20 bit message Alice wants to encrypt. If Alice and Bob both know S then Alice can do the following. First she creates 20 random bits Z as follows.
Z≔B⁡,B⁡
Z≔1,0,1,1,0,0,1,1,1,0,1,0,1,1,1,1,0,0,1,1
Now the ciphertext C is formed by adding Z to M modulo 2 (equivalent to an exclusive or of the bits).
C≔M+Zmod2
C≔1,1,0,0,0,1,0,1,1,1,0,0,1,1,0,0,0,1,1,0
Now Alice sends C to Bob. Bob, who knows S, can determine M from C as follows.
C+Zmod2
0,1,1,1,0,1,1,0,0,1,1,0,0,0,1,1,0,1,0,1
M
The security of the Blum, Blum, and Shub generator depends on the size of the primes used. Choices available are 512, 768, and 1024 bit primes. See NewBitGenerator for further details, examples and other options.
See Also
rand
RandomTools
RandomTools[LinearCongruence]
RandomTools[MersenneTwister]
RandomTools[QuadraticCongruence]
UsingPackages
with
Download Help Document