Re: [SR-Users] digest authentication based on two password columns

2016-10-28 Thread Jayesh Nambiar
Thanks Alex for the suggestion. Thanks Daniel, the flow you mentioned worked just as expected. - Jayesh On Fri, Oct 28, 2016 at 6:34 PM Daniel-Constantin Mierla wrote: > Hello, > > you can do: > > > if(!pv_auth_check(...passwd1...)) { > >if(!pv_auth_check(...passwd2...)) { > > # do the

Re: [SR-Users] digest authentication based on two password columns

2016-10-28 Thread Daniel-Constantin Mierla
Hello, you can do: if(!pv_auth_check(...passwd1...)) { if(!pv_auth_check(...passwd2...)) { # do the challenge } } Cheers, Daniel On 28/10/16 13:41, Jayesh Nambiar wrote: > Hello, > I was wondering if it is possible to do a failover in digest > authentication. For eg: I get two p

Re: [SR-Users] digest authentication based on two password columns

2016-10-28 Thread Alex Balashov
You can always issue a second challenge that requires different credentials than the first. On October 28, 2016 7:41:16 AM EDT, Jayesh Nambiar wrote: >Hello, >I was wondering if it is possible to do a failover in digest >authentication. For eg: I get two possible valid password values. Can I >d

[SR-Users] digest authentication based on two password columns

2016-10-28 Thread Jayesh Nambiar
Hello, I was wondering if it is possible to do a failover in digest authentication. For eg: I get two possible valid password values. Can I do a pv_proxy_authenticate in such a way where if authentication fails, I do a pv_proxy_autenticate again on the different value to check if that succeeds? Is