athena/include/aes.h

19 lines
359 B
C
Raw Normal View History

2013-02-16 04:22:16 +00:00
#ifndef __AES_H_
#define __AES_H_
2014-04-20 09:14:15 +00:00
#include "Athena/Types.hpp"
2013-02-16 04:22:16 +00:00
#ifdef __cplusplus
extern "C" {
#endif
void aes_encrypt(atUint8 *iv, const atUint8 *inbuf, atUint8 *outbuf, atUint64 len);
void aes_decrypt(atUint8 *iv, const atUint8 *inbuf, atUint8 *outbuf, atUint64 len);
void aes_set_key(const atUint8 *key );
2013-02-16 04:22:16 +00:00
#ifdef __cplusplus
}
#endif
#endif //__AES_H_