keycard-pro/app/ur/bytewords.h

11 lines
268 B
C
Raw Normal View History

2023-03-20 17:42:15 +00:00
#ifndef _BYTEWORDS_
#define _BYTEWORDS_
#include <stdint.h>
2023-04-28 14:03:37 +00:00
#include <stddef.h>
2023-03-20 17:42:15 +00:00
2023-03-27 07:43:18 +00:00
size_t bytewords_decode(const uint8_t* in, size_t in_len, uint8_t* out, size_t max_out);
size_t bytewords_encode(const uint8_t* in, size_t in_len, uint8_t* out, size_t max_out);
2023-03-20 17:42:15 +00:00
#endif