Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hello there ye monks,

I am struggling to see the wood for the trees looking for a server side Digest Access Authentication (RFC2617) implementation in Perl.

Can anyone recommend a module ?

Many thanks indeed :)

Replies are listed 'Best First'.
Re: Digest Access Authentication
by bluescreen (Friar) on Dec 30, 2011 at 23:55 UTC

    The code will look different depending on the webserver, fortunately there's Plack (an abstraction layer between webservers and applications) and it has middlewares which are software components that are executed before the application, one of them Plack::Middleware::Auth::Basic allows you to quickly implement an authorization layer.

    Plack can be overwhelming at the beginning because it's radically different to everything else (in the Perl world), but definitely something worth any minute spend on it as it's the new black

Re: Digest Access Authentication
by Anonymous Monk on Dec 30, 2011 at 23:45 UTC