2016-09-06 09:49:26 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-06 09:49:26 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2016-09-06 16:44:05 +00:00
|
|
|
#ifndef _CONVERT_H
|
|
|
|
#define _CONVERT_H
|
2016-09-06 09:49:26 +00:00
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2017-02-19 13:45:27 +00:00
|
|
|
bool is_hexify (const u8 *buf, const int len);
|
|
|
|
int exec_unhexify (const u8 *in_buf, const int in_len, u8 *out_buf, const int out_sz);
|
|
|
|
|
2016-12-09 13:54:13 +00:00
|
|
|
bool need_hexify (const u8 *buf, const int len, const char separator, bool always_ascii);
|
2016-10-04 16:30:00 +00:00
|
|
|
void exec_hexify (const u8 *buf, const int len, u8 *out);
|
|
|
|
|
2016-12-23 13:57:46 +00:00
|
|
|
bool is_valid_hex_string (const u8 *s, const int len);
|
|
|
|
bool is_valid_hex_char (const u8 c);
|
2016-09-06 09:49:26 +00:00
|
|
|
|
|
|
|
u8 hex_convert (const u8 c);
|
|
|
|
|
|
|
|
u8 hex_to_u8 (const u8 hex[2]);
|
|
|
|
u32 hex_to_u32 (const u8 hex[8]);
|
|
|
|
u64 hex_to_u64 (const u8 hex[16]);
|
|
|
|
|
2016-12-26 11:52:06 +00:00
|
|
|
void u8_to_hex_lower (const u8 v, u8 hex[2]);
|
|
|
|
void u32_to_hex_lower (const u32 v, u8 hex[8]);
|
|
|
|
void u64_to_hex_lower (const u64 v, u8 hex[16]);
|
2016-09-06 09:49:26 +00:00
|
|
|
|
|
|
|
u8 int_to_base32 (const u8 c);
|
|
|
|
u8 base32_to_int (const u8 c);
|
|
|
|
u8 int_to_base64 (const u8 c);
|
|
|
|
u8 base64_to_int (const u8 c);
|
|
|
|
|
|
|
|
u8 int_to_itoa32 (const u8 c);
|
|
|
|
u8 itoa32_to_int (const u8 c);
|
|
|
|
u8 int_to_itoa64 (const u8 c);
|
|
|
|
u8 itoa64_to_int (const u8 c);
|
|
|
|
|
|
|
|
u8 int_to_bf64 (const u8 c);
|
|
|
|
u8 bf64_to_int (const u8 c);
|
|
|
|
|
|
|
|
u8 int_to_lotus64 (const u8 c);
|
|
|
|
u8 lotus64_to_int (const u8 c);
|
|
|
|
|
|
|
|
int base32_decode (u8 (*f) (const u8), const u8 *in_buf, int in_len, u8 *out_buf);
|
|
|
|
int base32_encode (u8 (*f) (const u8), const u8 *in_buf, int in_len, u8 *out_buf);
|
|
|
|
|
|
|
|
int base64_decode (u8 (*f) (const u8), const u8 *in_buf, int in_len, u8 *out_buf);
|
|
|
|
int base64_encode (u8 (*f) (const u8), const u8 *in_buf, int in_len, u8 *out_buf);
|
|
|
|
|
|
|
|
void lowercase (u8 *buf, int len);
|
|
|
|
void uppercase (u8 *buf, int len);
|
2016-09-06 16:44:05 +00:00
|
|
|
|
|
|
|
#endif // _CONVERT_H
|