@deftypefun {int} {gnutls_x509_crt_get_pk_ecc_raw} (gnutls_x509_crt_t @var{crt}, gnutls_ecc_curve_t * @var{curve}, gnutls_datum_t * @var{x}, gnutls_datum_t * @var{y}) @var{crt}: Holds the certificate @var{curve}: will hold the curve @var{x}: will hold the x-coordinate @var{y}: will hold the y-coordinate This function will export the ECC public key's parameters found in the given certificate. 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:} @code{GNUTLS_E_SUCCESS} on success, otherwise a negative error code. @strong{Since:} 3.4.1 @end deftypefun