summaryrefslogtreecommitdiffstats
path: root/rfc2045/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'rfc2045/base64.h')
-rw-r--r--rfc2045/base64.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/rfc2045/base64.h b/rfc2045/base64.h
new file mode 100644
index 0000000..ef112aa
--- /dev/null
+++ b/rfc2045/base64.h
@@ -0,0 +1,39 @@
+#ifndef base64_h
+#define base64_h
+
+#include "rfc2045/rfc2045_config.h"
+
+
+/*
+** Copyright 2002 Double Precision, Inc. See COPYING for
+** distribution information.
+*/
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* This is an attempt to write a portable base64 decoder */
+
+struct base64decode {
+
+ char workbuf[256];
+ int workbuflen;
+
+ int (*decode_func)(const char *, int, void *);
+ void *decode_func_arg;
+} ;
+
+void base64_decode_init(struct base64decode *,
+ int (*)(const char *, int, void *),
+ void *);
+int base64_decode(struct base64decode *, const char *, int);
+int base64_decode_end(struct base64decode *);
+
+char *base64_decode_str(const char *);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif