blob: a0d707959e2eac01c4859ba8438eb887df2f650f (
plain)
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
27
|
@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
|