Dillo v3.1.1-46-g8a360e32
Loading...
Searching...
No Matches
digest.h
Go to the documentation of this file.
1#ifndef __DIGEST_H__
2#define __DIGEST_H__
3
4#include "auth.h"
5#include "../dlib/dlib.h"
6
7
8char *a_Digest_create_cnonce(void);
10 const char *username,
11 const char *passwd);
13 const DilloUrl *url,
14 const char *uri);
15
16#endif /* !__DIGEST_H__ */
char * a_Digest_authorization_hdr(AuthRealm_t *realm, const DilloUrl *url, const char *uri)
Construct Digest Authorization header.
Definition digest.c:169
int a_Digest_compute_digest(AuthRealm_t *realm, const char *username, const char *passwd)
This portion only has to be calculated once.
Definition digest.c:54
char * a_Digest_create_cnonce(void)
Returns a pointer to a newly allocated string containing a cnonce.
Definition digest.c:41
Definition url.h:88