mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 22:48:23 +00:00
* rtems_webserver/cgi.c, rtems_webserver/sockGen.c, rtems_webserver/umui.c, rtems_webserver/websSSL.c, rtems_webserver/websSSL.h, rtems_webserver/websda.c, rtems_webserver/websda.h: New files. Not included in previous commit.
42 lines
1.0 KiB
C
42 lines
1.0 KiB
C
/*
|
|
* websda.h -- GoAhead Digest Access Authentication public header
|
|
*
|
|
* Copyright (c) GoAhead Software Inc., 1992-2000. All Rights Reserved.
|
|
*
|
|
* See the file "license.txt" for information on usage and redistribution
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#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 ***********************************/
|
|
|
|
#ifndef UEMF
|
|
#include "basic/basic.h"
|
|
#include "emf/emf.h"
|
|
#else
|
|
#include "uemf.h"
|
|
#endif
|
|
|
|
#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);
|
|
|
|
#endif /* _h_WEBSDA */
|
|
|
|
/******************************************************************************/
|