2018-07-17 15:15:58 +02:00
|
|
|
#ifndef _HASH_H
|
|
|
|
#define _HASH_H
|
2018-07-15 14:28:05 +02:00
|
|
|
|
2018-09-30 15:08:00 +02:00
|
|
|
#include <Arduino.h>
|
|
|
|
#include <inttypes.h>
|
2018-07-15 14:28:05 +02:00
|
|
|
|
2018-09-30 15:08:00 +02:00
|
|
|
uint32_t IRAM_ATTR rokkit(const char *data, int len);
|
|
|
|
|
|
|
|
#endif
|