atsign-foundation / micropython

A fork of Micropython with AES CTR enabled for the Raspberry Pi Pico W
https://micropython.org
Other
0 stars 0 forks source link

Library ucryptolib is now cryptolib #8

Open realvarx opened 8 months ago

realvarx commented 8 months ago

Library ucryptolib is now cryptolib. That means that definitions to enable AES CTR are now different:

https://github.com/atsign-foundation/micropython/blob/bc7247492739ce85e27daa78df0782a2e7aa035a/ports/rp2/boards/RPI_PICO_W/mpconfigboard.h#L12 Should now be:

#define MICROPY_PY_CRYPTOLIB_CTR (1)

This issue has been observed in a MicroPython v1.23.0-preview.75.g46e833b07.dirty build for an ESP32 device, but it probably happens in v1.22 and Pico W too (documentation reflects that change of name) and we will eventually have to make that change effective when v1.23 is officially released.