wistia / nsq-ruby

NSQ Ruby client
MIT License
68 stars 27 forks source link

just TLS v1 #24

Closed mschneider82 closed 8 years ago

mschneider82 commented 8 years ago

Any plays to support tls_v1 client also?

The current implemenation only supports client certificate validation (AUTH) which requires keys on the nsq client. I just want to encrypt the connection channel.

freerobby commented 8 years ago

@mschneider82 We do support tls_v1 as of https://github.com/wistia/nsq-ruby/pull/22. We don't have plans to support tls_v1 without keys or certificates on the client, though. Could you explain how you envision that working? Is the idea to generate them on the fly if not provided?

mschneider82 commented 8 years ago

Hi @freerobby,

It works like browsing to a https website, only the webserver (nsqd) has a configured private/certificate.

thanks @alieander !