diff options
Diffstat (limited to 'doc/functions/gnutls_base64_decode2')
-rw-r--r-- | doc/functions/gnutls_base64_decode2 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/functions/gnutls_base64_decode2 b/doc/functions/gnutls_base64_decode2 new file mode 100644 index 0000000..69144f4 --- /dev/null +++ b/doc/functions/gnutls_base64_decode2 @@ -0,0 +1,19 @@ + + + + +@deftypefun {int} {gnutls_base64_decode2} (const gnutls_datum_t * @var{base64}, gnutls_datum_t * @var{result}) +@var{base64}: contains the encoded data + +@var{result}: the location of decoded data + +This function will decode the given base64 encoded data. The decoded data +will be allocated, and stored into result. + +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 |