Go to the source code of this file.
Macros | |
#define | NDEBUG |
Functions | |
int | private_AES_set_encrypt_key (const unsigned char *userKey, const int bits, AES_KEY *key) |
int | private_AES_set_decrypt_key (const unsigned char *userKey, const int bits, AES_KEY *key) |
void | AES_encrypt (const unsigned char *in, unsigned char *out, const AES_KEY *key) |
void | AES_decrypt (const unsigned char *in, unsigned char *out, const AES_KEY *key) |
#define NDEBUG |
rijndael-alg-fst.c
Optimised ANSI C code for the Rijndael cipher (now AES)
This code is hereby placed in the public domain.
THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition at line 33 of file aes_core.c.
Definition at line 972 of file aes_core.c.
Definition at line 781 of file aes_core.c.
int private_AES_set_decrypt_key | ( | const unsigned char * | userKey, |
const int | bits, | ||
AES_KEY * | key | ||
) |
Expand the cipher key into the decryption key schedule.
Definition at line 729 of file aes_core.c.
int private_AES_set_encrypt_key | ( | const unsigned char * | userKey, |
const int | bits, | ||
AES_KEY * | key | ||
) |
Expand the cipher key into the encryption key schedule.
Definition at line 628 of file aes_core.c.