



@deftypefun {int} {gnutls_certificate_get_openpgp_key} (gnutls_certificate_credentials_t @var{res}, unsigned @var{index}, gnutls_openpgp_privkey_t * @var{key})
@var{res}: is a @code{gnutls_certificate_credentials_t}  type.

@var{index}: The index of the key to obtain.

@var{key}: Location to store the key.

Obtains a OpenPGP private key that has been stored in  @code{res} with one of
@code{gnutls_certificate_set_openpgp_key()} ,
@code{gnutls_certificate_set_openpgp_key_file()} ,
@code{gnutls_certificate_set_openpgp_key_file2()} ,
@code{gnutls_certificate_set_openpgp_key_mem()} , or
@code{gnutls_certificate_set_openpgp_key_mem2()} .
The returned key must be deallocated with @code{gnutls_openpgp_privkey_deinit()} 
when no longer needed.

If there is no key with the given index,
@code{GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE}  is returned. If the key with the
given index is not a X.509 key, @code{GNUTLS_E_INVALID_REQUEST}  is returned.

@strong{Returns:} @code{GNUTLS_E_SUCCESS}  (0) on success, or a negative error code.

@strong{Since:} 3.4.0
@end deftypefun
