!!!!! Author: Mile Ilievski
NATIVE AND NON-NATIVE LIBRARIES THAT PROVIDE AES ENCRYPTION
LIBRARY INFO
============
1. AES library provides 128, 192 and 256 bit encryption
LIBRARY FUNCTION INFO
=====================
1. AES functions
- aes_set_key(sets the required encryption/decryption key)
- aes_encrypt(provides encryption on 16bytes data block - ECB)
- aes_decrypt(provides decryption on 16bytes data block - ECB)
- aes_cbc_encrypt(provides MACing encryption - CBC)
- aes_cbc_decrypt(provides MACing decryption - CBC)
- aes_self_test(AES self test using hard coded test vectors)
Note: Detail info about all functions is inside aesh source library file.