-
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
Having another look at SSL in Micropython #102
Comments
Hello @DracoTomes, I use it in production! Is this really urgent for you? 🚀 |
No this is not urgent. Originally I also failed here I then tried replacing the ctx = new ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
try:
load_verify_locations(caFile)
except :
raise ValueError('"caFile" must indicate a valid PEM file.') but then had the issue that the new SSLContext does not implement and I gave up. I guess the first interesting thing is how much work you roughly estimate this would take, if feasible at all? |
I don't know how long it would take with MicroPython because it would be important for me to get the ESP32 boards out and have a bit of time (I'm setting up a business at the moment and I've got a lot of work to do). https://docs.micropython.org/en/latest/library/ssl.html#class-sslcontext |
I just tried enabling SSL on my MicroPython project and had a pretty bad time.
I only afterwards stumbled on this Issue, basically stating HTTPS is not supported on MicroPython.
Given that MicroPython has recently started redoing a lot of the ssl Implementation how willing are you to have a look at what it would take to implement this into the XAsyncSockets library?
The text was updated successfully, but these errors were encountered: