Blame doc/functions/gnutls_privkey_export_ecc_raw2

Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
@deftypefun {int} {gnutls_privkey_export_ecc_raw2} (gnutls_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}, unsigned int @var{flags})
Packit aea12f
@var{key}: Holds the public key
Packit aea12f
Packit aea12f
@var{curve}: will hold the curve
Packit aea12f
Packit aea12f
@var{x}: will hold the x-coordinate
Packit aea12f
Packit aea12f
@var{y}: will hold the y-coordinate
Packit aea12f
Packit aea12f
@var{k}: will hold the private key
Packit aea12f
Packit aea12f
@var{flags}: flags from @code{gnutls_abstract_export_flags_t} 
Packit aea12f
Packit aea12f
This function will export the ECC private key's parameters found
Packit aea12f
in the given structure. The new parameters will be allocated using
Packit aea12f
@code{gnutls_malloc()}  and will be stored in the appropriate datum.
Packit aea12f
Packit aea12f
In EdDSA curves the  @code{y} parameter will be @code{NULL}  and the other parameters
Packit aea12f
will be in the native format for the curve.
Packit aea12f
Packit aea12f
@strong{Returns:} @code{GNUTLS_E_SUCCESS}  on success, otherwise a negative error code.
Packit aea12f
Packit aea12f
@strong{Since:} 3.6.0
Packit aea12f
@end deftypefun