HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS structure (http.h)
The HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS structure contains the information for digest authentication on a URL Group.
This structure is contained in the HTTP_SERVER_AUTHENTICATION_INFO structure.
Syntax
typedef struct _HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS {
USHORT DomainNameLength;
PWSTR DomainName;
USHORT RealmLength;
PWSTR Realm;
} HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS, *PHTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS;
Members
DomainNameLength
The length, in bytes, of the DomainName member.
DomainName
The domain name used for Digest authentication.
If NULL, the client assumes the protection space consists of all the URIs under the responding server.
RealmLength
The length, in bytes, of the Realm member.
Realm
The realm used for Digest authentication.
The realm allows the server to be partitioned into a set of protection spaces, each with its own set of authentication schemes from the authentication database.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2008 [desktop apps only] |
Header | http.h |