Skip to content

Releases: adafruit/Adafruit_CircuitPython_hashlib

Fix version for hashlib

09 Sep 13:52
c1b3063
Compare
Choose a tag to compare
  • Fixes the __version__ for this module.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

Read the docs for info on how to use it.

Fix MD5

20 Aug 16:54
c1b3063
Compare
Choose a tag to compare

Fixes an initialization error caused by a case mismatch within the MD5 class.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

Read the docs for info on how to use it.

Initial Release!

19 Aug 20:55
5b0d124
Compare
Choose a tag to compare

This module implements a common interface to many different secure hash and message digest algorithms. Included are the FIPS secure hash algorithms SHA1, SHA224, SHA256, SHA384, and SHA512 (defined in FIPS 180-2) as well as RSA’s MD5 algorithm (defined in Internet RFC 1321).

SHA1 and MD5 algorithms are not currently supported by the CircuitPython module, but constructors/sub-modules are included in the library to retain backwards-compatibility with the CPython3 hashlib module's available algorithms.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

Read the docs for info on how to use it.