-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Implement TLS for Ethernet #6535
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
Comments
Adding SSL support would be great! You are using the Python Wiznet driver now right? The MicroPython and CircuitPython network approaches are a bit different now. The CP APIs were designed to support Python-only drivers but MP took a more CPython approach where the OS manages it. One place to start is the Right now the only implementation we have punts to the ESP-IDF for everything. Having port-agnostic TLS would be awesome though. That'd help in supporting the new Pico W too. Here's how I'd suggest starting:
|
I'm trying to implement something similar in micropython (on ESP32, or wherever); namely getting SSL working on the pure-python wiznet driver (which was backported from circuitpython). Findings so far:
While I'm trying to get this going on micropython, I'm happy to share in both directions |
See #2202 |
Hi Everyone, I'm Ron from WIZnet HK. After viewing these issue, I wanted to try to modify our socket section that allows the SSL function could work on our PICO board in circuitpython. Will there be anyone could help me to give some guideline to work on this development? Also, I had join the discord chat as well. Which hastag section that I bring up this topic? |
I don't know a lot about SSL but can help guide you in CP. @victorallume's comment seems on the right track. The goal would to to have the native
#circuitpython-dev is the best place to discuss modifying the C core of CircuitPython. Note that most of us are in the US and are unlikely to be online during our night. |
Thanks for your explanation. I think I need to study more about the steaming interface to make it happen. I found that our HQ members had made SSL/TLS in MQTT for micropython. Maybe it would help. https://github.com/renakim/W5100S-EVB-Pico-Micropython/tree/main/examples/AWS https://github.com/renakim/W5100S-EVB-Pico-Micropython/tree/main/examples/Azure |
Implemented by #8954 |
@ladyada said I should open a ticket here. I'd like to work on TLS support for Ethernet (e.g. Wiznet 5500). I have a great deal of general software development experience, but not a ton of Python, and very little knowledge of the micropython/CircuitPython networking stack internals.
If I could get some guidance from someone with more knowledge of the network stack, I could make significant progress.
Ideally, we should be able to make things like TSL/SSL support common to both WiFi and Ethernet (and any other underlying transport).
The text was updated successfully, but these errors were encountered: