Re: [RFC] Apache::DigestAPI

2002-05-28 Thread Geoffrey Young
ok... after talking things over with Andrew a bit more, Apache::DigestAPI has become Apache::AuthDigest. the package should actually compile and work now, too :) The latest version can be grabbed here: http://www.modperlcookbook.org/~geoff/modules/Apache-AuthDigest-0.01.tar.gz Apache::AuthDi

Re: [RFC] Apache::DigestAPI

2002-05-23 Thread Geoffrey Young
Andrew Ho wrote: > Hello, > > GY>well, it's an API in that it doesn't do anything for you except provide > GY>an API. meaning, I'd expect Apache::AuthDigest to work as so: > GY> > GY>PerlAuthenHandler Apache::AuthDigest > GY> > GY>all this module does is provide methods that parallel > GY>$r->

Re: [RFC] Apache::DigestAPI

2002-05-23 Thread Andrew Ho
Hello, GY>well, it's an API in that it doesn't do anything for you except provide GY>an API. meaning, I'd expect Apache::AuthDigest to work as so: GY> GY>PerlAuthenHandler Apache::AuthDigest GY> GY>all this module does is provide methods that parallel GY>$r->get_basic_auth_pw() and $r->note_basic

Re: [RFC] Apache::DigestAPI

2002-05-23 Thread Geoffrey Young
Andrew Ho wrote: > Hello, > > GY>Apache::DigestAPI is a release of Recipe 13.8 in the Cookbook - a simple > GY>API for supporting Digest authentication a la mod_digest.c from the > GY>Apache distribution. > > I think this is a great idea. I'm a huge fan of digest authentication as a > simple

Re: [RFC] Apache::DigestAPI

2002-05-23 Thread Andrew Ho
Hello, GY>Apache::DigestAPI is a release of Recipe 13.8 in the Cookbook - a simple GY>API for supporting Digest authentication a la mod_digest.c from the GY>Apache distribution. I think this is a great idea. I'm a huge fan of digest authentication as a simple basic authentication replacement, an

[RFC] Apache::DigestAPI

2002-05-23 Thread Geoffrey Young
hi all... I wanted to present Apache::DigestAPI as an RFC. the module can be downloaded here for trials: http://www.modperlcookbook.org/~geoff/modules/Apache-DigestAPI-0.01.tar.gz basically, Apache::DigestAPI is a release of Recipe 13.8 in the Cookbook - a simple API for supporting D