blob: cdeca0a00317d3f4d83b2cb5a5aedd3331ad0297 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@deftypefun {int} {gnutls_psk_set_client_credentials2} (gnutls_psk_client_credentials_t @var{res}, const gnutls_datum_t * @var{username}, const gnutls_datum_t * @var{key}, gnutls_psk_key_flags @var{flags})
@var{res}: is a @code{gnutls_psk_client_credentials_t} type.
@var{username}: is the userid
@var{key}: is the user's key
@var{flags}: indicate the format of the key, either
@code{GNUTLS_PSK_KEY_RAW} or @code{GNUTLS_PSK_KEY_HEX} .
This function is identical to @code{gnutls_psk_set_client_credentials()} ,
except that it allows a non-null-terminated username to be introduced.
@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, otherwise
an error code is returned.
@end deftypefun
|