Get rid of bin_to_hex_lower(), add u8_to_hex_lower(), u32_to_hex_lower() and u64_to_hex_lower()

This commit is contained in:
jsteube
2016-12-26 12:52:06 +01:00
parent 45479978c4
commit f0b287e838
3 changed files with 70 additions and 38 deletions
+3 -1
View File
@@ -20,7 +20,9 @@ u8 hex_to_u8 (const u8 hex[2]);
u32 hex_to_u32 (const u8 hex[8]);
u64 hex_to_u64 (const u8 hex[16]);
void bin_to_hex_lower (const u32 v, u8 hex[8]);
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]);
u8 int_to_base32 (const u8 c);
u8 base32_to_int (const u8 c);