| Did you know ... | Search Documentation: | 
| http_authenticate.pl -- Authenticate HTTP connections using 401 headers | 
This module provides the basics to validate an HTTP Authorization
header. User and password information are read from a Unix/Apache
compatible password file.
This library provides, in addition to the HTTP authentication, predicates to read and write password files.
 http_authenticate(+Type, +Request, -Fields)Basic authentication and verify the password
from PasswordFile. PasswordFile is a file holding
usernames and passwords in a format compatible to
Unix and Apache. Each line is record with :
separated fields. The first field is the username and
the second the password hash. Password hashes are
validated using crypt/2.Successful authorization is cached for 60 seconds to avoid overhead of decoding and lookup of the user and password data.
http_authenticate/3 just validates the header. If authorization is not provided the browser must be challenged, in response to which it normally opens a user-password dialogue. Example code realising this is below. The exception causes the HTTP wrapper code to generate an HTTP 401 reply.
( http_authenticate(basic(passwd), Request, Fields) -> true ; throw(http_reply(authorise(basic, Realm))) ).
 http_authorization_data(+AuthorizeText, ?Data) is semidetAuthorization header. Data is a term
Method(User, Password)
where Method is the (downcased) authorization method (typically
basic), User is an atom holding the user name and Password is
a list of codes holding the password
 http_current_user(+File, ?User, ?Fields) is nondet
 http_read_passwd_file(+Path, -Data) is detpasswd(User, Hash, Fields)
 http_write_passwd_file(+File, +Data:list) is detpasswd(User, Hash, Fields)
 http:authenticate(+AuthData, +Request, -Fields)[multifile]library(http_dispatch) to perform basic HTTP
authentication.
This predicate throws http_reply(authorise(basic, Realm)).