File: gnutls_pubkey_export_dh_raw

package info (click to toggle)
gnutls28 3.8.9-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 83,872 kB
  • sloc: ansic: 388,071; asm: 117,804; sh: 18,477; makefile: 6,732; yacc: 1,858; python: 1,399; cpp: 1,243; perl: 995; sed: 16
file content (26 lines) | stat: -rw-r--r-- 886 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26




@deftypefun {int} {gnutls_pubkey_export_dh_raw} (gnutls_pubkey_t @var{key}, gnutls_dh_params_t @var{params}, gnutls_datum_t * @var{y}, unsigned @var{flags})
@var{key}: Holds the public key

@var{params}: will hold the Diffie-Hellman parameter (optional), must be initialized

@var{y}: will hold the y

@var{flags}: flags from @code{gnutls_abstract_export_flags_t} 

This function will export the Diffie-Hellman public key parameter
found in the given public key.  The new parameter will be allocated
using @code{gnutls_malloc()}  and will be stored in the appropriate datum.

To retrieve other parameters common in both public key and private
key, use @code{gnutls_dh_params_export_raw()} .

This function allows for @code{NULL}  parameters since 3.4.1.

@strong{Returns:} @code{GNUTLS_E_SUCCESS}  on success, otherwise a negative error code.

@strong{Since:} 3.8.2
@end deftypefun