9 lines
206 B
C
9 lines
206 B
C
#ifndef _TEA_H
|
|
#define _TEA_H
|
|
#include <stdint.h>
|
|
void encrypt_xtea (uint32_t* v, uint32_t const k[]);
|
|
void decrypt_xtea (uint32_t* v, uint32_t const k[]);
|
|
uint64_t hash_block_xtea(char b[24]);
|
|
#endif
|
|
|