mirror of
https://github.com/kokke/tiny-AES-c
synced 2024-11-22 13:31:22 +03:00
9 lines
136 B
C
9 lines
136 B
C
|
#ifndef _AES_H_
|
||
|
#define _AES_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void AES128_ECB(uint8_t* input, uint8_t* key, uint8_t *output);
|
||
|
|
||
|
#endif //_AES_H_
|