-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tlslite with tornado #381
Comments
I'm not familiar with torado, and don't see anything in the code referencing it, so I'd say that the answer as of now is "no". That being said, it shouldn't be too hard, there already are integrations with few other modules, see the |
@tomato42 ,Thank you for your reply. That's not what I want. I want a highly concurrent and asynchronous HTTP server to get SSL clienthello sent by the browser and respond to the browser in the form of HTTP-JSON. Can you write it? |
while this library does support asynchronous operation, it's definitely not fast
once you establish a TLS connection you can exchange anything you want on top of it...
no, that's not why I'm working on this library |
@tomato42 ,thanks,a highly concurrent httpserver to get SSL clienthello sent by the browser is very important to me,the sooner the better,i hope it! |
@tomato42 ,I'm very sorry. I misspelled it. It's tornado, a python's high concurrency asynchronous web framework. I saw / scripts / tls.py. So, can tornado replace basehttpserver? |
I'd be surprised if it couldn't. If somebody proposes necessary changes to integrate tlslite-ng with tornado, I will review them, but I won't work on them myself. |
@tomato42 ,Yes,thank you for your reply. Do you have time to call tornado to write an httpserver script similar to tls.py as soon as possible? It's very important to me, thank you very much! |
All good async frameworks integrates well with standard python SSL APIs, one way to integrate is to reimplement the SSL APIs tornado uses using TLSLite as base. Another way to integrate is through non-blocking sockets, TLSLite supports it, its async functions (named with |
Hi,I want to wirte httpserver,can tlslite with torado?
The text was updated successfully, but these errors were encountered: