1gnutls_x509_privkey_export_dsa_raw(3)gnutlsgnutls_x509_privkey_export_dsa_raw(3)
2
3
4
6 gnutls_x509_privkey_export_dsa_raw - This function will export the DSA
7 private key
8
10 #include <gnutls/x509.h>
11
12 int gnutls_x509_privkey_export_dsa_raw(gnutls_x509_privkey_t key,
13 gnutls_datum_t * p, gnutls_datum_t * q, gnutls_datum_t * g,
14 gnutls_datum_t * y, gnutls_datum_t * x);
15
17 gnutls_x509_privkey_t key
18
19 gnutls_datum_t * p
20 will hold the p
21
22 gnutls_datum_t * q
23 will hold the q
24
25 gnutls_datum_t * g
26 will hold the g
27
28 gnutls_datum_t * y
29 will hold the y
30
31 gnutls_datum_t * x
32 will hold the x
33
35 This function will export the DSA private key's parameters found in the
36 given structure. The new parameters will be allocated using gnutls_mal‐
37 loc() and will be stored in the appropriate datum.
38
40 Report bugs to <bug-gnutls@gnu.org>.
41
43 Copyright © 2006 Free Software Foundation.
44 Permission is granted to make and distribute verbatim copies of this
45 manual provided the copyright notice and this permission notice are
46 preserved on all copies.
47
49 The full documentation for gnutls is maintained as a Texinfo manual.
50 If the info and gnutls programs are properly installed at your site,
51 the command
52
53 info gnutls
54
55 should give you access to the complete manual.
56
57
58
59gnutls 1.6.3gnutls_x509_privkey_export_dsa_raw(3)