1gnutls_encode_rs_value(3) gnutls gnutls_encode_rs_value(3)
2
3
4
6 gnutls_encode_rs_value - API function
7
9 #include <gnutls/crypto.h>
10
11 int gnutls_encode_rs_value(gnutls_datum_t * sig_value, const
12 gnutls_datum_t * r, const gnutls_datum_t * s);
13
15 gnutls_datum_t * sig_value
16 will hold a Dss-Sig-Value DER encoded structure
17
18 const gnutls_datum_t * r
19 must contain the r value
20
21 const gnutls_datum_t * s
22 must contain the s value
23
25 This function will encode the provided r and s values, into a
26 Dss-Sig-Value structure, used for DSA and ECDSA signatures.
27
28 The output value should be deallocated using gnutls_free().
29
31 On success, GNUTLS_E_SUCCESS (0) is returned, otherwise an error code
32 is returned.
33
35 3.6.0
36
38 Report bugs to <bugs@gnutls.org>.
39 Home page: https://www.gnutls.org
40
41
43 Copyright © 2001-2019 Free Software Foundation, Inc., and others.
44 Copying and distribution of this file, with or without modification,
45 are permitted in any medium without royalty provided the copyright
46 notice and this notice are preserved.
47
49 The full documentation for gnutls is maintained as a Texinfo manual.
50 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
51 visit
52
53 https://www.gnutls.org/manual/
54
55gnutls 3.6.8 gnutls_encode_rs_value(3)