-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathwebsda.h
36 lines (26 loc) · 1011 Bytes
/
websda.h
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
28
29
30
31
32
33
34
35
/*
* websda.h -- GoAhead Digest Access Authentication public header
*
* Copyright (c) GoAhead Software Inc., 1992-2010. All Rights Reserved.
*
* See the file "license.txt" for information on usage and redistribution
*
*/
#ifndef _h_WEBSDA
#define _h_WEBSDA 1
/******************************** Description *********************************/
/*
* GoAhead Digest Access Authentication header. This defines the Digest
* access authentication public APIs. Include this header for files that
* use DAA functions
*/
/********************************* Includes ***********************************/
#include "uemf.h"
#include "webs.h"
/****************************** Definitions ***********************************/
extern char_t *websCalcNonce(webs_t wp);
extern char_t *websCalcOpaque(webs_t wp);
extern char_t *websCalcDigest(webs_t wp);
extern char_t *websCalcUrlDigest(webs_t wp);
#endif /* _h_WEBSDA */
/******************************************************************************/