Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
Overview of the RandomTools[BlumBlumShub] Subpackage
Calling Sequence
RandomTools[BlumBlumShub][function](arguments)
function(arguments)
Description
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
where is a product of two primes and , 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 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.
As the underlying implementation of the RandomTools[BlumBlumShub] subpackage is a module, it is also possible to use the form BlumBlumShub:-command to access a command from the package. For more information, see Module Members.
List of RandomTools[BlumBlumShub] Subpackage Commands
NewBitGenerator
NewGenerator
To display the help page for a particular BlumBlumShub command, see Getting Help with a Command in a Package.
Examples
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.
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
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.
Now the ciphertext C is formed by adding Z to M modulo 2 (equivalent to an exclusive or of the bits).
Now Alice sends C to Bob. Bob, who knows S, can determine M from C as follows.
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