Merge branch 'master' of github.com:r0ket/r0ket
This commit is contained in:
commit
c241ad30f5
|
@ -1,6 +1,6 @@
|
|||
#ifndef _RANDOM_H_
|
||||
#define _RANDOM_H_
|
||||
|
||||
#include <stdint.h>
|
||||
void randomInit(void);
|
||||
uint32_t getRandom(void);
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef _XXTEA_H_
|
||||
#define _XXTEA_H_
|
||||
#include <stdint.h>
|
||||
|
||||
void xxtea_cbcmac(uint32_t mac[4], uint32_t *data,
|
||||
uint32_t len, uint32_t const key[4]);
|
||||
void xxtea_cbcmac(uint32_t mac[4], uint32_t *data, uint32_t len, uint32_t const key[4]);
|
||||
void xxtea_encode_words(uint32_t *v, int n, uint32_t const k[4]);
|
||||
void xxtea_decode_words(uint32_t *v, int n, uint32_t const k[4]);
|
||||
|
||||
|
|
Loading…
Reference in New Issue