Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | extmod: Update for changes to mp_obj_str_get_data. | Damien George | 2017-03-29 |
| | |||
* | all: Remove readall() method, which is equivalent to read() w/o args. | Paul Sokolovsky | 2016-11-14 |
| | | | | | | Its addition was due to an early exploration on how to add CPython-like stream interface. It's clear that it's not needed and just takes up bytes in all ports. | ||
* | extmod/modussl_mbedtls: Add dummy setblocking() method. | Paul Sokolovsky | 2016-10-15 |
| | | | | Accepts only value of True. | ||
* | extmod: Use mp_raise_OSError helper function. | Damien George | 2016-10-07 |
| | |||
* | extmod/modussl_mbedtls: Add server_hostname param for wrap_socket(). | Paul Sokolovsky | 2016-09-23 |
| | | | | | In CPython, module-level .wrap_socket() function actually doesn't accept (or document) this param, only SSLContext.wrap_socket() has. | ||
* | extmod/modussl_mbedtls: Use 2-component include paths. | Paul Sokolovsky | 2016-09-22 |
| | | | | | This is required to use mbedTLS versions from various sources, e.g. mainline vs embedded into Zephyr RTOS. | ||
* | extmod/modussl_mbedtls: Implement key= and cert= args to wrap_socket(). | Paul Sokolovsky | 2016-09-22 |
| | | | | | Unlike standard keyfile= and certfile=, these accept byte buffer objects (to not depend on FS implementation). | ||
* | extmod/modussl_mbedtls: Initial implementation of mbedTLS ussl module. | Paul Sokolovsky | 2016-09-21 |