index
:
user/sven/micropython.git
for-upstream
master
old
stmhal-flash
origin/HEAD
origin/dependabot/github_actions/actions/checkout-5
origin/docs/library/bluetooth
origin/master
origin/parse-bytecode
origin/v1.22-release
origin/v1.24-release
origin/v1.26-release
The MicroPython project
Sven Wegener
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
extmod
/
moducryptolib.c
Age
Commit message (
Expand
)
Author
2023-06-08
all: Rename *umodule*.c to remove the "u" prefix.
Jim Mussared
2023-06-08
all: Rename UMODULE to MODULE in preprocessor/Makefile vars.
Jim Mussared
2023-06-08
all: Rename mod_umodule*, ^umodule* to remove the "u" prefix.
Jim Mussared
2023-06-08
all: Rename mp_umodule*, mp_module_umodule* to remove the "u" prefix.
Jim Mussared
2023-06-08
all: Rename MP_QSTR_umodule to MP_QSTR_module everywhere.
Jim Mussared
2022-09-19
py/obj: Convert make_new into a mp_obj_type_t slot.
Jim Mussared
2022-09-19
all: Remove unnecessary locals_dict cast.
Jim Mussared
2022-09-19
all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.
Jim Mussared
2022-08-26
py/objstr: Split mp_obj_str_from_vstr into bytes/str versions.
Jim Mussared
2022-06-02
all: Remove third argument to MP_REGISTER_MODULE.
Damien George
2022-05-18
extmod: Make extmod modules use MP_REGISTER_MODULE.
Jim Mussared
2022-05-03
all: Use mp_obj_malloc everywhere it's applicable.
Jim Mussared
2020-04-23
all: Format code to add space after C++-style comment start.
stijn
2020-04-05
all: Use MP_ERROR_TEXT for all error messages.
Jim Mussared
2020-02-28
all: Reformat C and Python source code with tools/codeformat.py.
Damien George
2019-08-20
extmod/moducryptolib: Use "static" not "STATIC" for inline functions.
Damien George
2019-05-06
extmod/moducryptolib: Add AES-CTR support for axTLS builds.
Yonatan Goldschmidt
2019-05-06
extmod/moducryptolib: Add AES-CTR support.
Yonatan Goldschmidt
2018-06-27
extmod/moducryptolib: Don't include arpa/inet.h, it's not needed.
Damien George
2018-06-27
extmod/moducryptolib: Shorten exception messages to reduce code size.
Yonatan Goldschmidt
2018-06-27
extmod/moducryptolib: Prefix all Python methods/objects with ucryptolib.
Yonatan Goldschmidt
2018-06-27
extmod/moducryptolib: Add an mbedTLS implementation for this module.
Yonatan Goldschmidt
2018-06-27
extmod/moducryptolib: Refactor functions for clean interface with axTLS.
Yonatan Goldschmidt
2018-06-27
extmod/moducryptolib: Optionally export MODE_* constants to Python.
Yonatan Goldschmidt
2018-06-27
extmod/moducryptolib: Add ucryptolib module with crypto functions.
Paul Sokolovsky