aboutsummaryrefslogtreecommitdiff
path: root/extmod/moduhashlib.c
AgeCommit message (Expand)Author
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
2021-07-12extmod: Update for move of crypto-algorithms, re1.5, uzlib to lib.Damien George
2021-05-26extmod/moduhashlib: Put hash obj in final state after digest is called.Damien George
2020-04-23all: Format code to add space after C++-style comment start.stijn
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2019-02-07extmod/moduhashlib: Include implementation of sha256 only when required.Yonatan Goldschmidt
2018-09-12extmod/moduhashlib: Add md5 implementation using mbedtls.Damien George
2018-09-12extmod/moduhashlib: Use newer message digest API for mbedtls >=2.7.0.Damien George
2018-09-11extmod/moduhashlib: Add md5 implementation, using axTLS.Paul Sokolovsky
2018-06-12extmod/moduhashlib: Make function objects STATIC.Yonatan Goldschmidt
2018-06-12extmod/moduhashlib: Allow using the sha256 implementation of mbedTLS.Yonatan Goldschmidt
2018-06-12extmod/moduhashlib: Allow to disable the sha256 class.Yonatan Goldschmidt
2018-06-12extmod/moduhashlib: Reorder funcs so that they are grouped by hash type.Yonatan Goldschmidt
2018-06-12extmod/moduhashlib: Prefix all Python methods and objects with uhashlib.Yonatan Goldschmidt
2017-11-12extmod/moduhashlib: Enable SHA1 hashing when using "mbedtls" library.Christopher Cooper
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2016-09-22all: Remove 'name' member from mp_obj_module_t struct.Damien George
2016-01-25extmod/moduhashlib: Use MICROPY_PY_UHASHLIB_SHA1 config define.Paul Sokolovsky
2016-01-24extmod/moduhashlib: Add support for SHA1 (based on axTLS).Paul Sokolovsky
2016-01-11py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George
2016-01-11py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George
2015-12-20extmod/moduhashlib: Add namespace prefix for crypto-algorithms/sha256.h.Paul Sokolovsky
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
2015-05-21moduhashlib: Remove not implemented .hexdigest().Paul Sokolovsky
2015-01-21py: Remove mp_obj_str_builder and use vstr instead.Damien George
2015-01-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-01extmod: Prefix py/ for includes from py core directory.Damien George
2014-11-29Use MP_DEFINE_CONST_DICT macro to define module dicts.Damien George
2014-11-22moduhashlib: Integrate sha256 implementation.Paul Sokolovsky
2014-11-22moduhashlib: Initial module skeleton.Paul Sokolovsky