summaryrefslogtreecommitdiff
path: root/extmod/moducryptolib.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
2022-09-19py/obj: Convert make_new into a mp_obj_type_t slot.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-26py/objstr: Split mp_obj_str_from_vstr into bytes/str versions.Jim Mussared
2022-06-02all: Remove third argument to MP_REGISTER_MODULE.Damien George
2022-05-18extmod: Make extmod modules use MP_REGISTER_MODULE.Jim Mussared
2022-05-03all: Use mp_obj_malloc everywhere it's applicable.Jim Mussared
2020-04-23all: Format code to add space after C++-style comment start.stijn
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-08-20extmod/moducryptolib: Use "static" not "STATIC" for inline functions.Damien George
2019-05-06extmod/moducryptolib: Add AES-CTR support for axTLS builds.Yonatan Goldschmidt
2019-05-06extmod/moducryptolib: Add AES-CTR support.Yonatan Goldschmidt
2018-06-27extmod/moducryptolib: Don't include arpa/inet.h, it's not needed.Damien George
2018-06-27extmod/moducryptolib: Shorten exception messages to reduce code size.Yonatan Goldschmidt
2018-06-27extmod/moducryptolib: Prefix all Python methods/objects with ucryptolib.Yonatan Goldschmidt
2018-06-27extmod/moducryptolib: Add an mbedTLS implementation for this module.Yonatan Goldschmidt
2018-06-27extmod/moducryptolib: Refactor functions for clean interface with axTLS.Yonatan Goldschmidt
2018-06-27extmod/moducryptolib: Optionally export MODE_* constants to Python.Yonatan Goldschmidt
2018-06-27extmod/moducryptolib: Add ucryptolib module with crypto functions.Paul Sokolovsky