mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-12-05 21:27:13 -06:00
improvements all over the place
This commit is contained in:
13
base32.h
13
base32.h
@@ -1,2 +1,11 @@
|
||||
char *base32_to(char *dst, const u8 *src, size_t slen);
|
||||
size_t base32_from(u8 *dst, u8 *dmask, const char *src);
|
||||
// converts src[0:slen] to base32 string
|
||||
char *base32_to(char *dst,const u8 *src,size_t slen);
|
||||
// calculates length needed to store data converted to base32
|
||||
#define BASE32_TO_LEN(l) (((l) * 8 + 4) / 5)
|
||||
// converts src string from base32
|
||||
size_t base32_from(u8 *dst,u8 *dmask,const char *src);
|
||||
// calculates length needed to store data converted from base
|
||||
#define BASE32_FROM_LEN(l) (((l) * 5 + 7) / 8)
|
||||
// validates base32 string and optionally stores length of valid data
|
||||
// returns 1 if whole string is good, 0 if string contains invalid data
|
||||
int base32_valid(const char *src,size_t *count);
|
||||
|
||||
Reference in New Issue
Block a user