@deftypefun {int} {gnutls_srp_verifier} (const char * @var{username}, const char * @var{password}, const gnutls_datum_t * @var{salt}, const gnutls_datum_t * @var{generator}, const gnutls_datum_t * @var{prime}, gnutls_datum_t * @var{res}) @var{username}: is the user's name @var{password}: is the user's password @var{salt}: should be some randomly generated bytes @var{generator}: is the generator of the group @var{prime}: is the group's prime @var{res}: where the verifier will be stored. This function will create an SRP verifier, as specified in RFC2945. The @code{prime} and @code{generator} should be one of the static parameters defined in gnutls/gnutls.h or may be generated. The verifier will be allocated with @code{gnutls_malloc} () and will be stored in @code{res} using binary format. @strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, or an error code. @end deftypefun