Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nopnop2002/esp-idf-mbedtls
Example of mbedtls for ESP-IDF
https://github.com/nopnop2002/esp-idf-mbedtls
aes-encryption base64 md5 md5-digest sha1 sha224 sha256 sha384 sha512
Last synced: 3 months ago
JSON representation
Example of mbedtls for ESP-IDF
- Host: GitHub
- URL: https://github.com/nopnop2002/esp-idf-mbedtls
- Owner: nopnop2002
- License: mit
- Created: 2021-07-04T00:38:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T04:33:28.000Z (4 months ago)
- Last Synced: 2024-10-11T13:42:28.650Z (3 months ago)
- Topics: aes-encryption, base64, md5, md5-digest, sha1, sha224, sha256, sha384, sha512
- Language: C
- Homepage:
- Size: 46.9 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# esp-idf-mbedtls
Example of mbedtls for ESP-IDF.ESP-IDF includes [this](https://tls.mbed.org/) Mbed TLS library.
You can use TLS components as standard.
However, there is no sample code in esp-idf.
So i ported from [here](https://github.com/ARMmbed/mbedtls/tree/development/programs/hash).# Software requirements
esp-idf v4.4/v5.0.# Installation
```
git clone https://github.com/nopnop2002/esp-idf-mbedtls
cd esp-idf-mbedtls/hello
idf.py flash monitor
```