]> git.cryptolib.org Git - avr-crypto-lib.git/blob - noekeon.h
14714ff4cc141c7179d081c3bc589fca5b3bc863
[avr-crypto-lib.git] / noekeon.h
1 #ifndef NOEKEON_H_
2 #define NOEKEON_H_
3
4 /*
5  * author: Daniel Otte
6  * email:  daniel.otte@rub.de
7  * license: GPLv3
8  * 
9  * 
10  * 
11  */
12
13 #include <stdint.h>
14
15 typedef uint8_t noekeon_ctx_t[16];
16
17 void noekeon_enc(void* buffer, void* key);
18 void noekeon_dec(void* buffer, void* key);
19 void noekeon_init(void* key, noekeon_ctx_t* ctx);
20
21 #endif /*NOEKEON_H_*/