OVMS3-idf/components/libsodium/port_include/sodium.h
Angus Gratton 979eabeba5 libsodium: Use mbedTLS implementations for SHA256 & SHA512
* Adds support for hardware accelerated SHA
* Saves code size (~5.5KB) for SHA256 & SHA512 where libsodium & mbedTLS both used
2017-08-18 16:29:04 +10:00

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"