Home | History | Annotate | Download | only in libtomcrypt

Lines Matching refs:rijndael

639 For AES, (also known as Rijndael) there are four descriptors which complicate issues a little.  The descriptors 
640 rijndael\_desc and rijndael\_enc\_desc provide the cipher named \textit{rijndael}. The descriptors aes\_desc and
641 aes\_enc\_desc provide the cipher name \textit{aes}. Functionally both \textit{rijndael} and \textit{aes} are the same cipher. The
643 in the middle (e.g. rijndael\_enc\_desc) are related to an implementation of Rijndael with only the encryption routine
649 Rijndael as it makes the most sense for this cipher.
746 printf("Error registering Rijndael\n");
750 /* use Rijndael */
754 printf("Error removing Rijndael: %s\n", error_to_string(err));
762 This snippet is a small program that registers Rijndael.
1243 This requires that the AES (or Rijndael) block cipher be registered with the cipher\_descriptor table first.
1255 printf("Error registering Rijndael");
1263 find_cipher("rijndael"), /* cipher id */
1481 This will return \textbf{CRYPT\_OK} if the CCM routine passes known test vectors. It requires AES or Rijndael to be registered previously, otherwise it will
2299 /* register Rijndael */
2301 printf("Error registering Rijndael\n");
2305 /* get index of Rijndael in cipher descriptor table */
2306 idx = find_cipher("rijndael");
2572 This will return \textbf{CRYPT\_OK} on success. This requires the AES or Rijndael descriptor be previously registered, otherwise, it will return
2658 This will return \textbf{CRYPT\_OK} on success. This requires the AES or Rijndael
5311 When this is defined some of the code such as the Rijndael and SAFER+ ciphers are replaced with smaller code variants.