@deftypefun {int} {gnutls_x509_privkey_export2} (gnutls_x509_privkey_t @var{key}, gnutls_x509_crt_fmt_t @var{format}, gnutls_datum_t * @var{out}) @var{key}: Holds the key @var{format}: the format of output params. One of PEM or DER. @var{out}: will contain a private key PEM or DER encoded This function will export the private key to a PKCS@code{1} structure for RSA or RSA-PSS keys, and integer sequence for DSA keys. Other keys types will be exported in PKCS@code{8} form. The output buffer is allocated using @code{gnutls_malloc()} . It is recommended to use @code{gnutls_x509_privkey_export2_pkcs8()} instead of this function, when a consistent output format is required. @strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, otherwise a negative error value. Since 3.1.3 @end deftypefun