meejah

Results 300 comments of meejah

Yes, I think this counts as a missing feature in `Component` -- if @asodeur has a PR or proposed method in mind, that sounds great! (If you haven't written code...

I haven't looked deeply, but probably the right thing is to accept some extra config in the `transports=` list since this is a transport-specific option

@asodeur if an enhancement to `transport=` configurations will work for your use-case and you're still interested in doing a PR, that sounds like a sensible approach to me! I am...

Yeah, I think letting `txaio` format the tracebacks is probably best; see PR.

@nbrochu something like: ``` @inlineCallbacks def onJoin(self, _): @inlineCallbacks def method(deets): session = yield self.call('wamp.session.get', details.caller) print "session_info:", session peer = session['transport']['peer'] print "peer's address", peer headers = session['transport']['http_headers_received'] print...

@oddjobz I'm not, but @nbrochu's question implied he was (`X-Forwarded-For` etc).

I haven't read about SRP (yet) but do know a bit about various PAKE variants. Another interesting use of these is https://magic-wormhole.io which implements SPAKE2 as basically a way to...

AFAIK, all PAKE's result in a shared secret key.

Although we've made "user registration" an exercise for the application developer thus far, perhaps that's worth discussing? I think the reason "user registration" might be worth discussing here (and for...

@oberstet SPAKE2 depends on MUCH lower entropy for the password, so two words are enough (because anyone trying to MitM gets just one guess and can't do offline brute-forcing) which...