libapache2-authenntlm-perl 0.02-5build2 source package in Ubuntu

Changelog

libapache2-authenntlm-perl (0.02-5build2) precise; urgency=low

  * Rebuild for Perl 5.14.
 -- Colin Watson <email address hidden>   Tue, 15 Nov 2011 17:08:25 +0000

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Precise
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe perl

Downloads

File Size SHA-256 Checksum
libapache2-authenntlm-perl_0.02.orig.tar.gz 50.4 KiB 9051e7b604d73920b634b2e85387f3f5d63703b0b49c98e2b5856a64c421164d
libapache2-authenntlm-perl_0.02-5build2.diff.gz 2.9 KiB 8368178e5b5847ca5db8682766886755ffc4227f41a0505ec3e067de61c4708e
libapache2-authenntlm-perl_0.02-5build2.dsc 2.2 KiB b4052a32868d2e40d1262cd08cd081faf59f4dac0c32eeac7ed6ec7dbb63f0ff

Available diffs

View changes file

Binary packages built by this source

libapache2-authenntlm-perl: Perform Microsoft NTLM and Basic User Authentication

 The purpose of this module is to perform a user authentication via Microsoft's
 NTLM protocol. This protocol is supported by all versions of the Internet
 Explorer and is mainly useful for intranets. Depending on your preferences
 setting IE will supply your windows logon credentials to the web server
 when the server asks for NTLM authentication. This saves the user to type in
 his/her password again.
 .
 The NTLM protocol performs a challenge/response to exchange a random number
 (nonce) and get back a md4 hash, which is built from the user's password
 and the nonce. This makes sure that no password goes over the wire in plain
 text.
 .
 The main advantage of the Perl implementation is, that it can be easily
 extended to verify the user/password against other sources than a windows
 domain controller.
 .
 The default implementation is to go to the domain controller for the given
 domain and verify the user. If you want to verify the user against another
 source, you can inherit from Apache2::AuthenNTLM and override it's methods.