Blame doc/functions/gnutls_x509_privkey_export

Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
@deftypefun {int} {gnutls_x509_privkey_export} (gnutls_x509_privkey_t @var{key}, gnutls_x509_crt_fmt_t @var{format}, void * @var{output_data}, size_t * @var{output_data_size})
Packit aea12f
@var{key}: Holds the key
Packit aea12f
Packit aea12f
@var{format}: the format of output params. One of PEM or DER.
Packit aea12f
Packit aea12f
@var{output_data}: will contain a private key PEM or DER encoded
Packit aea12f
Packit aea12f
@var{output_data_size}: holds the size of output_data (and will be
Packit aea12f
replaced by the actual size of parameters)
Packit aea12f
Packit aea12f
This function will export the private key to a PKCS@code{1}  structure for
Packit aea12f
RSA or RSA-PSS keys, and integer sequence for DSA keys. Other keys types
Packit aea12f
will be exported in PKCS@code{8}  form.
Packit aea12f
Packit aea12f
If the structure is PEM encoded, it will have a header
Packit aea12f
of "BEGIN RSA PRIVATE KEY".
Packit aea12f
Packit aea12f
It is recommended to use @code{gnutls_x509_privkey_export_pkcs8()}  instead
Packit aea12f
of this function, when a consistent output format is required.
Packit aea12f
Packit aea12f
@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS}  (0) is returned, otherwise a
Packit aea12f
negative error value.
Packit aea12f
@end deftypefun