aboutsummaryrefslogtreecommitdiff
path: root/src/Auth.h
blob: 73129acd01779c3680196c708af824b030fa8ef0 (plain)
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
 /*@@
   @header    Auth.h
   @date      Fri Sep 15 13:20:01 2000
   @author    Tom Goodale
   @desc 
   Was httpd_Auth.h; still exported by that name.
   @enddesc
   @version $Header$
 @@*/

#ifndef __HTTP_AUTH_H__
#define __HTTP_AUTH_H__ 1

#include "httpRequest.h"

#ifdef __cplusplus
extern "C" 
{
#endif

int HTTP_AuthAddUser(const char *database, 
                     const char *name,
                     const char *password,
                     const char *encryption_scheme);

int HTTP_AuthenticateBasic(httpRequest *request,
                           const char *database,
                           char *user,
                           int length);

#ifdef __cplusplus
}
#endif

#endif /* __HTTP_AUTH_H__ */