1gnutls_pubkey_export_rsa_raw2(3) gnutls gnutls_pubkey_export_rsa_raw2(3)
2
3
4
6 gnutls_pubkey_export_rsa_raw2 - API function
7
9 #include <gnutls/abstract.h>
10
11 int gnutls_pubkey_export_rsa_raw2(gnutls_pubkey_t key, gnutls_datum_t *
12 m, gnutls_datum_t * e, unsigned flags);
13
15 gnutls_pubkey_t key
16 Holds the certificate
17
18 gnutls_datum_t * m
19 will hold the modulus (may be NULL)
20
21 gnutls_datum_t * e
22 will hold the public exponent (may be NULL)
23
24 unsigned flags
25 flags from gnutls_abstract_export_flags_t
26
28 This function will export the RSA public key's parameters found in the
29 given structure. The new parameters will be allocated using
30 gnutls_malloc() and will be stored in the appropriate datum.
31
32 This function allows for NULL parameters since 3.4.1.
33
35 GNUTLS_E_SUCCESS on success, otherwise a negative error code.
36
38 3.6.0
39
41 Report bugs to <bugs@gnutls.org>.
42 Home page: http://www.gnutls.org
43
44
46 Copyright © 2001-2018 Free Software Foundation, Inc., and others.
47 Copying and distribution of this file, with or without modification,
48 are permitted in any medium without royalty provided the copyright
49 notice and this notice are preserved.
50
52 The full documentation for gnutls is maintained as a Texinfo manual.
53 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
54 visit
55
56 http://www.gnutls.org/manual/
57
58gnutls 3.6.5 gnutls_pubkey_export_rsa_raw2(3)