mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
522 B
26 lines
522 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
httpauth.h
|
|
|
|
Abstract:
|
|
|
|
Functions for authentication sequence ( Basic & NTLM )
|
|
|
|
Author:
|
|
|
|
Philipe Choquier 15-Feb-1996
|
|
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
BOOL AddAuthorizationHeader(PSTR pch, PSTR pchSchemes, PSTR pchAuthData, PSTR pchUserName, PSTR pchPassword, BOOL *pfNeedMoreData );
|
|
BOOL InitAuthorizationHeader();
|
|
void TerminateAuthorizationHeader();
|
|
BOOL IsInAuthorizationSequence();
|
|
BOOL ValidateAuthenticationMethods( PSTR pszMet, PSTR pszPref );
|