blob: 0c51cf3742d626137d8e3469a0f3437254c0fe6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@deftypefun {int} {gnutls_decode_gost_rs_value} (const gnutls_datum_t * @var{sig_value}, gnutls_datum_t * @var{r}, gnutls_datum_t * @var{s})
@var{sig_value}: will holds a GOST signature according to RFC 4491 section 2.2.2
@var{r}: will contain the r value
@var{s}: will contain the s value
This function will decode the provided @code{sig_value} , into @code{r} and @code{s} elements.
See RFC 4491 section 2.2.2 for the format of signature value.
The output values may be padded with a zero byte to prevent them
from being interpreted as negative values. The value
should be deallocated using @code{gnutls_free()} .
@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, otherwise
an error code is returned.
@strong{Since:} 3.6.0
@end deftypefun
|