Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-05-08 15:28:51 +0300
committerFelix Fietkau <nbd@openwrt.org>2015-05-08 15:34:29 +0300
commita8e70c6d361967a23977417fb7d6cf56234f8b81 (patch)
tree2f54a67edd949b8501a1b6e4b6b2f778c574e0b0 /utils.h
parentb8d9b382e39823850331edc2a92379173daf1be3 (diff)
add a base64 implementation (based on FreeBSD code)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/utils.h b/utils.h
index 7ef82c6..d00e76b 100644
--- a/utils.h
+++ b/utils.h
@@ -184,4 +184,12 @@ static inline bool bitfield_test(unsigned long *bits, int bit)
return !!(bits[bit / BITS_PER_LONG] & (1UL << (bit % BITS_PER_LONG)));
}
+int b64_encode(const void *src, size_t src_len,
+ void *dest, size_t dest_len);
+
+int b64_decode(const void *src, void *dest, size_t dest_len);
+
+#define B64_ENCODE_LEN(_len) ((((_len) + 2) / 3) * 4 + 1)
+#define B64_DECODE_LEN(_len) (((_len) / 4) * 3 + 1)
+
#endif