Re: ticketing solutions

2005-04-22 Thread Dan Brian
What are people using to do authentication ticketing from mp? Nothing jumps out of CPAN at me, mostly because what I've seen just makes md5's out of username/password/expiration. Any recommendations? What were you expecting it to do beyond making a hash for verification? My point was that I don't

Re: ticketing solutions

2005-04-22 Thread David Nicol
I use AIS::client, which I wrote myself. it hits a central AIS server, the code for the AIS server (an older version of it) is in my CPAN directory too. AIS is completely passwordless, relying on one-time capability tickets to verify receipt of e-mails, and then identity tickets in cookies, so th

ticketing solutions

2005-04-22 Thread Dan Brian
What are people using to do authentication ticketing from mp? Nothing jumps out of CPAN at me, mostly because what I've seen just makes md5's out of username/password/expiration. Any recommendations? Ideally, I'm looking for a solution that might be usable both inside and outside mp, over multi

Re: ticketing solutions

2005-04-22 Thread Michael Schout
Dan Brian wrote: > What are people using to do authentication ticketing from mp? Nothing > jumps out of CPAN at me, mostly because what I've seen just makes md5's > out of username/password/expiration. Any recommendations? My Apache::AuthTicket module implements a ticketing system similar to that

Re: ticketing solutions

2005-04-22 Thread Michael Schout
Dan Brian wrote: > My point was that I don't need a CPAN module to verify hashes. Features > could include a mechanism for rotating a key on the servers being > accessed, IP verification ... and other features I can't think of. :-) Apache::AuthTicket does ip verification. Not sure what you mean

Re: ticketing solutions

2005-04-22 Thread Dan Brian
Thanks all; I'll look at the solutions mentioned! On Apr 22, 2005, at 6:35 PM, Michael Schout wrote: Dan Brian wrote: My point was that I don't need a CPAN module to verify hashes. Features could include a mechanism for rotating a key on the servers being accessed, IP verification ... and other fe

Re: ticketing solutions

2005-04-22 Thread Perrin Harkins
On Fri, 2005-04-22 at 13:59 -0600, Dan Brian wrote: > My point was that I don't need a CPAN module to verify hashes. Features > could include a mechanism for rotating a key on the servers being > accessed, IP verification ... Key rotation would be nice. IP verification wouldn't be nice, unless

Re: ticketing solutions

2005-04-22 Thread Perrin Harkins
On Fri, 2005-04-22 at 13:33 -0600, Dan Brian wrote: > What are people using to do authentication ticketing from mp? Nothing > jumps out of CPAN at me, mostly because what I've seen just makes md5's > out of username/password/expiration. Any recommendations? What were you expecting it to do beyon