blob: da949b2c41743001abd9a6a3cca182f121a1a926 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
@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
|