/*****************************************************************************/ /* 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 */ /*****************************************************************************/