1gnutls_pem_base64_decode_alloc(3)   gnutls   gnutls_pem_base64_decode_alloc(3)
2
3
4

NAME

6       gnutls_pem_base64_decode_alloc - API function
7

SYNOPSIS

9       #include <gnutls/gnutls.h>
10
11       int   gnutls_pem_base64_decode_alloc(const   char   *   header,   const
12       gnutls_datum_t * b64_data, gnutls_datum_t * result);
13

ARGUMENTS

15       const char * header
16                   The PEM header (eg. CERTIFICATE)
17
18       const gnutls_datum_t * b64_data
19                   contains the encoded data
20
21       gnutls_datum_t * result
22                   the place where decoded data lie
23

DESCRIPTION

25       This function will decode the given encoded data. The decoded data will
26       be  allocated, and stored into result.  If the header given is non null
27       this function will search for "-----BEGIN header" and decode only  this
28       part. Otherwise it will decode the first PEM packet found.
29
30       You should use gnutls_free() to free the returned data.
31

RETURNS

33       On  success,  GNUTLS_E_SUCCESS (0) is returned, otherwise an error code
34       is returned.
35

REPORTING BUGS

37       Report bugs to <bugs@gnutls.org>.
38       Home page: http://www.gnutls.org
39
40
42       Copyright © 2001-2014 Free Software Foundation, Inc..
43       Copying and distribution of this file, with  or  without  modification,
44       are  permitted  in  any  medium  without royalty provided the copyright
45       notice and this notice are preserved.
46

SEE ALSO

48       The full documentation for gnutls is maintained as  a  Texinfo  manual.
49       If  the /usr/share/doc/gnutls/ directory does not contain the HTML form
50       visit
51
52       http://www.gnutls.org/manual/
53
54gnutls                              3.3.29   gnutls_pem_base64_decode_alloc(3)
Impressum