summaryrefslogtreecommitdiffstats
path: root/doc/functions/gnutls_base64_encode2
diff options
context:
space:
mode:
Diffstat (limited to 'doc/functions/gnutls_base64_encode2')
-rw-r--r--doc/functions/gnutls_base64_encode220
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/functions/gnutls_base64_encode2 b/doc/functions/gnutls_base64_encode2
new file mode 100644
index 0000000..f330305
--- /dev/null
+++ b/doc/functions/gnutls_base64_encode2
@@ -0,0 +1,20 @@
+
+
+
+
+@deftypefun {int} {gnutls_base64_encode2} (const gnutls_datum_t * @var{data}, gnutls_datum_t * @var{result})
+@var{data}: contains the raw data
+
+@var{result}: will hold the newly allocated encoded data
+
+This function will convert the given data to printable data, using
+the base64 encoding. This function will allocate the required
+memory to hold the encoded data.
+
+You should use @code{gnutls_free()} to free the returned data.
+
+@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, otherwise
+an error code is returned.
+
+@strong{Since:} 3.6.0
+@end deftypefun