1gnutls_privkey_import_ecc_raw(3) gnutls gnutls_privkey_import_ecc_raw(3)
2
3
4
6 gnutls_privkey_import_ecc_raw - API function
7
9 #include <gnutls/abstract.h>
10
11 int gnutls_privkey_import_ecc_raw(gnutls_privkey_t key,
12 gnutls_ecc_curve_t curve, const gnutls_datum_t * x, const
13 gnutls_datum_t * y, const gnutls_datum_t * k);
14
16 gnutls_privkey_t key
17 The key
18
19 gnutls_ecc_curve_t curve
20 holds the curve
21
22 const gnutls_datum_t * x
23 holds the x-coordinate
24
25 const gnutls_datum_t * y
26 holds the y-coordinate
27
28 const gnutls_datum_t * k
29 holds the k (private key)
30
32 This function will convert the given elliptic curve parameters to the
33 native gnutls_privkey_t format. The output will be stored in key .
34
35 In EdDSA curves the y parameter should be NULL and the x and k
36 parameters must be in the native format for the curve.
37
39 On success, GNUTLS_E_SUCCESS [22m(0) is returned, otherwise a negative
40 error value.
41
43 3.0
44
46 Report bugs to <bugs@gnutls.org>.
47 Home page: http://www.gnutls.org
48
49
51 Copyright © 2001-2018 Free Software Foundation, Inc., and others.
52 Copying and distribution of this file, with or without modification,
53 are permitted in any medium without royalty provided the copyright
54 notice and this notice are preserved.
55
57 The full documentation for gnutls is maintained as a Texinfo manual.
58 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
59 visit
60
61 http://www.gnutls.org/manual/
62
63gnutls 3.6.5 gnutls_privkey_import_ecc_raw(3)