-
Notifications
You must be signed in to change notification settings - Fork 97
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
SSL library #18
Comments
Hello @sniperini, and thank you for your interest 👍 About SSL, I know very well that |
I was reading into this, still learning, and it throws a wrench in the plan I had. I want to run a little server on a Pycom Wipy 3.0, with secure log in. Is there a way this could still be realized? |
Hi, |
Hello,
I am trying to enable SSL on my ESP32 Micropython latest compiled FW, but unfortunately your following requirements for SSL python library are hard to comply:
The ussl (https://github.com/micropython/micropython-lib/blob/master/ssl/ssl.py) library that Micropython uses doesn't have
create_default_context
method andSSLContext
class and , onlywrap_socket
method from it.Same goes for Pycom: https://docs.pycom.io/firmwareapi/micropython/ussl/
The only one I found that has everything, is CPython full implementation of SSL.
https://github.com/python/cpython/blob/master/Lib/ssl.py
But then again, micropython doesn't have all those dependencies to even load it, starting from importing
Enum
module... Basically it needs to be rewritten how it was done with USSL.Could you please clarify which library are you using that has that
SSLContext
class andcreate_default_context
method?Is it possible to adopt MicroWebSrv2 to comply with Micropython implementation of SSL somehow?
Thanks!
The text was updated successfully, but these errors were encountered: