Doc fix.
[gsasl.git] / doc / gsasl-callback-digest-md5.texi
blob31ddcc64022f253c5c640e35c4d596c7f7df5054
1 @deftypefn Prototype int (*Gsasl_server_callback_digest_md5) (Gsasl_session_ctx * @var{ctx}, char * @var{username}, char * @var{realm}, char * @var{secrethash})
3 @var{ctx}:  libgsasl handle.
5 @var{username}:  input array with authentication identity of user.
7 @var{realm}:  input array with realm of user.
9 @var{secrethash}: output array that should contain hash of username,
10 realm and password as described for the DIGEST-MD5 mechanism.
12 Type of callback function the application implements.  It should
13 retrieve the secret hash for the given user in given realm and return
14 GSASL_OK, or an error such as GSASL_AUTHENTICATION_ERROR if it fails.
15 The secrethash buffer is guaranteed to have size for the fixed length
16 MD5 hash.
18 @end deftypefn