@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