| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 
 | 
@deftypefun {int} {gnutls_pubkey_import_x509_raw} (gnutls_pubkey_t @var{pkey}, const gnutls_datum_t * @var{data}, gnutls_x509_crt_fmt_t @var{format}, unsigned int @var{flags})
@var{pkey}: The public key
@var{data}: The public key data to be imported
@var{format}: The format of the public key
@var{flags}: should be zero
This function will import the given public key to the abstract
@code{gnutls_pubkey_t}  structure. 
@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS}  (0) is returned, otherwise a
negative error value.
@strong{Since:} 3.1.3
@end deftypefun
 |