1gnutls_privkey_import_rsa_raw(3) gnutls gnutls_privkey_import_rsa_raw(3)
2
3
4
6 gnutls_privkey_import_rsa_raw - API function
7
9 #include <gnutls/abstract.h>
10
11 int gnutls_privkey_import_rsa_raw(gnutls_privkey_t key, const
12 gnutls_datum_t * m, const gnutls_datum_t * e, const gnutls_datum_t * d,
13 const gnutls_datum_t * p, const gnutls_datum_t * q, const gnutls_da‐
14 tum_t * u, const gnutls_datum_t * e1, const gnutls_datum_t * e2);
15
17 gnutls_privkey_t key
18 The structure to store the parsed key
19
20 const gnutls_datum_t * m
21 holds the modulus
22
23 const gnutls_datum_t * e
24 holds the public exponent
25
26 const gnutls_datum_t * d
27 holds the private exponent (optional)
28
29 const gnutls_datum_t * p
30 holds the first prime (p)
31
32 const gnutls_datum_t * q
33 holds the second prime (q)
34
35 const gnutls_datum_t * u
36 holds the coefficient (optional)
37
38 const gnutls_datum_t * e1
39 holds e1 = d mod (p-1) (optional)
40
41 const gnutls_datum_t * e2
42 holds e2 = d mod (q-1) (optional)
43
45 This function will convert the given RSA raw parameters to the native
46 gnutls_privkey_t format. The output will be stored in
47 key .
48
50 On success, GNUTLS_E_SUCCESS (0) is returned, otherwise a negative er‐
51 ror value.
52
54 Report bugs to <bugs@gnutls.org>.
55 Home page: https://www.gnutls.org
56
57
59 Copyright © 2001-2023 Free Software Foundation, Inc., and others.
60 Copying and distribution of this file, with or without modification,
61 are permitted in any medium without royalty provided the copyright no‐
62 tice and this notice are preserved.
63
65 The full documentation for gnutls is maintained as a Texinfo manual.
66 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
67 visit
68
69 https://www.gnutls.org/manual/
70
71gnutls 3.8.2 gnutls_privkey_import_rsa_raw(3)