mirror of
https://github.com/giantpune/mailboxbomb.git
synced 2024-11-16 17:19:16 +01:00
14 lines
274 B
C
14 lines
274 B
C
#ifndef __AES_H_
|
|
#define __AES_H_
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
void aes_encrypt( u8 *iv, const u8 *inbuf, u8 *outbuf, unsigned long long len );
|
|
void aes_decrypt( u8 *iv, const u8 *inbuf, u8 *outbuf, unsigned long long len );
|
|
void aes_set_key( const u8 *key );
|
|
|
|
#endif //__AES_H_
|
|
|