- What Is Miracl
- Security Advisory
- Benchmarks
- Miracl Standard Curves
- IEEE 1363
- Elliptic Curves
- Licensing
- Reference Manual
In these routines a big parameter can also be used wherever a flash is specified, but not vice versa. Further information may be gleaned from the (lightly) commented source code. An asterisk after the name indicates that the function does not take a mip parameter if MR_GENERIC_MT is defined in mirdef.h.
Decrypts a 16 or n byte input buffer in situ. If the mode of operation is as a block cipher (MR_ECB or MR_CBC) then 16 bytes will be decrypted. If the mode of operation is as a stream cipher (MR_CFBn, MR_OFBn or MR_PCFBn) then n bytes will be decrypted.
Parameters:
←a Pointer to an initialised instance of an aes structured defined in miracl.h
←→buff Pointer to the buffer of bytes to be decrypted
Returns:
If MR_CFBn and MR_PCFBn modes then n byte(s) that were shifted off the end of the input register as result of decrypting the n input byte(s), otherwise 0.
Precondition:
Must be preceded by call to aes_init()
Encrypts a 16 or n byte input buffer in situ. If the mode of operation is as a block cipher (MR_ECB or MR_CBC) then 16 bytes will be encrypted. If the mode of operation is as a stream cipher (MR_CFBn, MR_OFBn or MR_PCFBn) then n bytes will be encrypted.
Parameters:
←a Pointer to an initialised instance of an aes structure defined in miracl.h
←→buff Pointer to the buffer of bytes to be encrypted
Returns:
In MR_CFBn and MR_PCFBn modes the n byte(s) that were shifted off the end of the input register as result of encrypting the n input byte(s), otherwise 0.
Precondition:
Must be preceded by a call to aes_init().
Ends an AES encryption session, and de-allocates the memory associated with it. The internal session key data is destroyed.
Parameters:
←→a Pointer to an initialised instance of an aes structured defined in miracl.h
Reads the current contents of the input chaining register associated with this instance of the AES. This is the register initialised by the IV in the calls to aes_init() and aes_reset().
Parameters:
←a Pointer to an instance of the aes structured, defined in miracl.h
→ir A character array to hold the extracted 16-byte data
Precondition:
Must be preceded by a call to aes_init().
Initialises an Encryption/Decryption session using the Advanced Encryption Standard (AES). This is a block cipher system that encrypts data in 128-bit blocks using a key of 128, 192 or 256 bits. See [Stinson] for more background on block ciphers.
Parameters:
→a Pointer to an instance of the aes structure defined in miracl.h
←mode The mode of operation to be used: MR_ECB (Electronic Code Book), MR_CBC (Cipher
Block Chaining), MR_CFBn (Cipher Feed-Back where n is 1, 2 or 4), MR_PCFBn (error Propagating
Cipher Feed-Back where n is 1, 2 or 4) or MR_OFBn (Output Feed-Back where n is 1,
2, 4, 8 or 16). The value of n indicates the number of bytes to be processed in each application.
For more information on Modes of Operation, see [Stinson]. MR_PCFBn is an invention of our
own [Scott93]
←nk The size of the key in bytes. It can be either 16, 24 or 32
←key A pointer to the key
←iv A pointer to the Initialisation Vector (IV). A 16-byte initialisation vector should be specified for
all modes other than MR_ECB, in which case it can be NULL
Returns:
TRUE if successful, otherwise FALSE.
Resets the AES structure.
Parameters:
←a Pointer to an instance of the aes structure defined in miracl.h
←mode an Indication of the new mode of operation
←iv A pointer to a (possibly new) initialisation vector
Generates a 32 byte (256 bit) hash value into the provided array.
Parameters:
←sh Pointer to the current instance
→hash Pointer to array to be filled
Initialises an instance of the Secure Hash Algorithm (SHA-256). Must be called before new use.
Parameters:
→sh Pointer to an instance of a structure defined in miracl.h
Processes a single byte. Typically called many times to provide input to the hashing process. The hash value of all the processed bytes can be retrieved by a subsequent call to shs256_hash().
Parameters:
←sh Pointer to the current instance
←byte Character to be processed
Generates a 48 byte (384 bit) hash value into the provided array.
Parameters:
←sh Pointer to the current instance
→hash Pointer to array to be filled
Initialises an instance of the Secure Hash Algorithm (SHA-384). Must be called before new use.
Parameters:
! sh Pointer to an instance of a structure defined in miracl.h
Precondition:
The SHA-384 algorithm is only available if 64-bit data-type is defined.
Processes a single byte. Typically called many times to provide input to the hashing process. The hash value of all the processed bytes can be retrieved by a subsequent call to shs384_hash().
Parameters:
←sh Pointer to the current instance
←byte Character to be processed
Generates a 64 byte (512 bit) hash value into the provided array.
Parameters:
←sh Pointer to the current instance
→hash Pointer to array to be filled
Initialises an instance of the Secure Hash Algorithm (SHA-512). Must be called before new use.
Parameters:
→sh Pointer to an instance of a structure defined in miracl.h.
Precondition:
The SHA-512 algorithm is only available if 64-bit data-type is defined.
Processes a single byte. Typically called many times to provide input to the hashing process. The hash value of all the processed bytes can be retrieved by a subsequent call to shs512_hash().
Parameters:
←sh Pointer to the current instance
←byte Character to be processed
Generates a twenty byte (160 bit) hash value into the provided array.
Parameters:
←sh Pointer to the current instance
→hash Pointer to array to be filled
Initialises an instance of the Secure Hash Algorithm (SHA-1). Must be called before new use.
Parameters:
→sh Pointer to an instance of a structure defined in miracl.h
Processes a single byte. Typically called many times to provide input to the hashing process. The hash value of all the processed bytes can be retrieved by a subsequent call to shs_hash().
Parameters:
←sh Pointer to the current instance
←byte Character to be processed
Generates a big random number of given length from the cryptographically strong generator rng.
Parameters:
←rng A pointer to the random number generator
←n
←b
→x Big random number n digits long to base b
Precondition:
The base b must be printable, that is 2 <= b <= 256
Generates a cryptographically strong random big number x using the random number generator rng wuch that 0 <= x < w
Parameters:
←rng A pointer to the current instance
←w
→x
Initialises the cryptographically strong random number generator rng. The array raw (of length rawlen) and the time-of-day value tod are the two sources used together to seed the generator. The former might be provided from random keystrokes, the latter from an internal clock. Subsequent calls to strong_rng() will provide random bytes.
Parameters:
→rng
←rawlen
←raw An array of length rawlen
←tod A 32-bit time-of-day value
Kills the internal state of the random number generator rng
Parameters:
←rng A pointer to a random number generator
Generates a sequence of cryptographically strong random bytes.
Parameters:
←rng A pointer to a random number generator
Returns:
A random byte.