@deftypefun {int} {gnutls_x509_privkey_export_ecc_raw} (gnutls_x509_privkey_t @var{key}, gnutls_ecc_curve_t * @var{curve}, gnutls_datum_t * @var{x}, gnutls_datum_t * @var{y}, gnutls_datum_t * @var{k}) @var{key}: a key @var{curve}: will hold the curve @var{x}: will hold the x-coordinate @var{y}: will hold the y-coordinate @var{k}: will hold the private key This function will export the ECC private key's parameters found in the given structure. The new parameters will be allocated using @code{gnutls_malloc()} and will be stored in the appropriate datum. In EdDSA curves the @code{y} parameter will be @code{NULL} and the other parameters will be in the native format for the curve. @strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, otherwise a negative error value. @strong{Since:} 3.0 @end deftypefun