[0001]
[0002]
[0003]
[0004]
[0005]
[0006]
[0007]
[0008]
[0009]
[0010]
[0011]
[0012]
[0013]
[0014]
[0015]
[0016]
[0017]
[0018]
[0019]
[0020]
[0021]
[0022]
[0023]
[0024]
[0025]
[0026]
[0027]
/*****************************************************************************/
/*
                                 Basic.h

Function prototypes for BASIC authentication module.

*/
/*****************************************************************************/

#ifndef BASIC_H_LOADED
#define BASIC_H_LOADED 1

#include "wasd.h"

/***********************/
/* function prototypes */
/***********************/

int BasicAuthentication (REQUEST_STRUCT*);
int BasicChallenge (REQUEST_STRUCT*);
char* BasicPrintableDecode (char*, char*, int);
char* BasicPrintableEncode (unsigned char*, unsigned char*, int);

#endif /* BASIC_H_LOADED */

/*****************************************************************************/