123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef _H_AES_CMAC_PL_
- #define _H_AES_CMAC_PL_
- #include "EM_os.h"
- #include "cry.h"
- #define EM_MODULE_ID_AES_CMAC 0
- void aes_cmac_init_pl (void);
- EM_RESULT aes_cmac_128B_encrypt_pl (UCHAR * key, UCHAR * data, UCHAR * encout);
- void aes_cmac_128B_encrypt_complete_pl(UCHAR status, UCHAR * data, UINT16 length);
- #endif
|