diff options
Diffstat (limited to 'doc/functions/gnutls_srp_verifier')
-rw-r--r-- | doc/functions/gnutls_srp_verifier | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/functions/gnutls_srp_verifier b/doc/functions/gnutls_srp_verifier new file mode 100644 index 0000000..a0d7079 --- /dev/null +++ b/doc/functions/gnutls_srp_verifier @@ -0,0 +1,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 |