How to use the SHA-256 algorithm to compute the digest of a message, using Python.
ESP8266 Arduino: Using the SHA1 algorithm
In this tutorial, we will check how to apply the SHA1 algorithm to a message using the Arduino core on the ESP8266. The tests of this tutorial were performed using a DFRobot’s ESP8266 FireBeetle board. Introduction In this tutorial, we will check how to apply the SHA1 algorithm to a message using the Arduino core on …
Continue reading "ESP8266 Arduino: Using the SHA1 algorithm"
ESP32 Arduino mbed TLS: using the SHA-256 algorithm
In this tutorial we will check how to generate the hash of a string using the SHA-256 algorithm on the Arduino core running on the ESP32, with the mbed TLS libraries. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we will check how to generate the hash of …
Continue reading "ESP32 Arduino mbed TLS: using the SHA-256 algorithm"
ESP32 Espruino: Applying the SHA1 hash algorithm
The objective of this post is to explain how to apply the SHA1 hashing algorithm to a text input using Espruino, running on the ESP32. The tests were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board. Introduction The objective of this post is to explain how to apply the SHA1 hashing algorithm to a …
Continue reading "ESP32 Espruino: Applying the SHA1 hash algorithm"
ESP32 MicroPython: Using SHA-256
The objective of this post is to explain how to install a module to use the SHA-256 algorithm with MicroPython, running on the ESP32. Introduction The objective of this post is to explain how to install a module to use the SHA-256 algorithm with MicroPython, running on the ESP32. We are going to use a …