mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
979eabeba5
* Adds support for hardware accelerated SHA * Saves code size (~5.5KB) for SHA256 & SHA512 where libsodium & mbedTLS both used
7 lines
205 B
C
7 lines
205 B
C
/* Shim needed to make sure the mbedTLS-specific
|
|
sha256 & 512 headers are included */
|
|
#pragma once
|
|
#include "sodium/crypto_hash_sha512.h"
|
|
#include "sodium/crypto_hash_sha256.h"
|
|
#include_next "sodium.h"
|