Re: [grpc-io] [java] Challenge-Response / Digest Auth for GRPC

2017-11-17 Thread Nandabasu M
Hi Eric/William, I am very new to gRPC(just 5 days baby), We have planned and working on multiple services in gRPC. We have gateway to all the services, used Eureka for service discovery and SPRING BASED backend and Angular4 for UI. Here challenge I am facing is implementing OAuth2.0 for all

Re: [grpc-io] [java] Challenge-Response / Digest Auth for GRPC

2017-09-20 Thread William Shallum
Thank you for the tips. I found an implementation here https://github.com/grpc/grpc-java/pull/1570 and will study it for inspiration. Regards, William On 20 September 2017 at 06:59, Eric Anderson wrote: > On Mon, Sep 18, 2017 at 3:51 AM, William Shallum >

Re: [grpc-io] [java] Challenge-Response / Digest Auth for GRPC

2017-09-19 Thread 'Eric Anderson' via grpc.io
On Mon, Sep 18, 2017 at 3:51 AM, William Shallum wrote: > * Is this a good way of doing challenge/response over GRPC? > Yeah, an interceptor seems like a good approach. > * Is it possible in the Java API to have an interceptor that can retry > requests transparently? >

[grpc-io] [java] Challenge-Response / Digest Auth for GRPC

2017-09-18 Thread William Shallum
Hi, Has anyone attempted to do a challenge-response / digest authentication implementation for GRPC? Our current services use a token and HTTP Digest authentication to prove ownership of the token's associated secret without passing it over the wire. >From what I see in the examples, most of the