mirror of
https://github.com/martravi/wiiqt.git
synced 2024-11-14 21:35:12 +01:00
085ce1d522
* adding in ASH0, LZ77 and ( messy ) U8 classes
19 lines
371 B
C
19 lines
371 B
C
#ifndef __AES_H_
|
|
#define __AES_H_
|
|
#include "includes.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void aes_encrypt( quint8 *iv, const quint8 *inbuf, quint8 *outbuf, unsigned long long len );
|
|
void aes_decrypt( quint8 *iv, const quint8 *inbuf, quint8 *outbuf, unsigned long long len );
|
|
void aes_set_key( const quint8 *key );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //__AES_H_
|
|
|