summaryrefslogtreecommitdiff
path: root/extmod/modussl_mbedtls.c
AgeCommit message (Expand)Author
2023-06-08all: Rename *umodule*.c to remove the "u" prefix.Jim Mussared
2023-06-08all: Rename UMODULE to MODULE in preprocessor/Makefile vars.Jim Mussared
2023-06-08all: Rename mod_umodule*, ^umodule* to remove the "u" prefix.Jim Mussared
2023-06-08all: Rename mp_umodule*, mp_module_umodule* to remove the "u" prefix.Jim Mussared
2023-06-08all: Rename MP_QSTR_umodule to MP_QSTR_module everywhere.Jim Mussared
2023-04-27all: Fix spelling mistakes based on codespell check.Damien George
2022-12-15extmod/modussl_mbedtls: Fix support for ioctl(MP_STREAM_POLL).Damien Tournoud
2022-09-19py/obj: Convert make_new into a mp_obj_type_t slot.Jim Mussared
2022-09-19py/obj: Merge getiter and iternext mp_obj_type_t slots.Jim Mussared
2022-09-19all: Remove unnecessary locals_dict cast.Jim Mussared
2022-09-19all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.Jim Mussared
2022-08-06extmod/modussl_mbedtls: Set a more sensible default debug log level.Ian Davies
2022-07-20extmod/modussl_mbedtls: Implement cert_reqs and cadata arguments.Carlosgg
2022-06-03extmod/modussl_mbedtls: Poll EVENT_POLL_HOOK in ssl handshake loop.Andrew Leech
2022-06-02all: Remove third argument to MP_REGISTER_MODULE.Damien George
2022-05-18extmod: Make extmod modules use MP_REGISTER_MODULE.Jim Mussared
2021-02-17extmod/modussl: Fix ussl read/recv/send/write errors when non-blocking.Thorsten von Eicken
2020-07-21extmod/modussl_mbedtls: Integrate shorter error strings.Thorsten von Eicken
2020-07-20extmod/modussl: Improve exception error messages.Thorsten von Eicken
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2019-12-27py: Introduce MP_ROM_NONE macro for ROM to refer to None object.Damien George
2019-10-31extmod/modussl_mbedtls: Check for invalid key/cert data.Damien George
2019-10-31extmod/modussl_mbedtls: Fix getpeercert to return None if no cert avail.Damien George
2019-06-05extmod/modussl_mbedtls: Allow to build with object representation D.Damien George
2019-04-30extmod/modussl_mbedtls: Support non-blocking handshake.Paul Sokolovsky
2019-01-27extmod/modussl_mbedtls: Remove deprecated mbedtls/net.h header include.Paul Sokolovsky
2018-07-20extmod/modussl: Support polling in ussl objects by passing through ioctlDamien George
2018-06-18extmod: Update to use new mp_get_stream helper.Damien George
2018-05-31extmod/modussl_mbedtls: Use mbedtls_entropy_func for CTR-DRBG entropy.Damien George
2018-05-31extmod/modussl_mbedtls: Populate sock member right away in wrap_socket.Damien George
2018-04-10py/stream: Switch stream close operation from method to ioctl.Damien George
2017-12-13extmod/modussl_mbedtls: Clean up mbedtls state when error during setup.Damien George
2017-10-30extmod/modussl_mbedtls: Allow to compile with unix coverage build.Damien George
2017-10-30extmod/modussl: Add finaliser support for ussl objects.Eric Poulsen
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-09-06extmod/modussl_mbedtls: Allow to compile with MBEDTLS_DEBUG_C disabled.Damien George
2017-08-16extmod/modussl_mbedtls.c: Add ussl.getpeercert() method.Eric Poulsen
2017-07-26extmod/modussl_mbedtls: Implement non-blocking SSL sockets.Eric Poulsen
2017-07-25extmod/modussl_mbedtls: Make socket.close() free all TLS resources.Damien George
2017-07-25extmod/modussl_mbedtls: When reading and peer wants to close, return 0.Damien George
2017-07-24all: Don't include system errno.h when it's not needed.Damien George
2017-07-24extmod/modussl_mbedtls: Support server_side mode.Damien George
2017-03-29extmod: Update for changes to mp_obj_str_get_data.Damien George
2016-11-14all: Remove readall() method, which is equivalent to read() w/o args.Paul Sokolovsky
2016-10-15extmod/modussl_mbedtls: Add dummy setblocking() method.Paul Sokolovsky
2016-10-07extmod: Use mp_raise_OSError helper function.Damien George
2016-09-23extmod/modussl_mbedtls: Add server_hostname param for wrap_socket().Paul Sokolovsky
2016-09-22extmod/modussl_mbedtls: Use 2-component include paths.Paul Sokolovsky
2016-09-22extmod/modussl_mbedtls: Implement key= and cert= args to wrap_socket().Paul Sokolovsky