- checkBasicAuthbool checkBasicAuth(HTTPServerRequest req, PasswordVerifyCallback pwcheck) 
- Checks for valid HTTP Basic Auth authentication on the given request. 
- performBasicAuthHTTPServerRequestDelegateS performBasicAuth(string realm, PasswordVerifyCallback pwcheck) 
- Returns a request handler that enforces request to be authenticated using HTTP Basic Auth. 
- performBasicAuthHTTPServerRequestDelegateS performBasicAuth(string realm, bool delegate(string, string) @(system) pwcheck) 
- Scheduled for deprecation - use a @safe callback instead. 
- performBasicAuthstring performBasicAuth(HTTPServerRequest req, HTTPServerResponse res, string realm, PasswordVerifyCallback pwcheck) 
- Enforces HTTP Basic Auth authentication on the given req/res pair. 
- performBasicAuthstring performBasicAuth(HTTPServerRequest req, HTTPServerResponse res, string realm, bool delegate(string, string) @(system) pwcheck) 
- Scheduled for deprecation - use a @safe callback instead. 
Implements HTTP Basic Auth.