979eabeba5
* Adds support for hardware accelerated SHA * Saves code size (~5.5KB) for SHA256 & SHA512 where libsodium & mbedTLS both used
6 lines
206 B
C
6 lines
206 B
C
/* Shim needed to make sure the mbedTLS-specific
|
|
sha256 & sha512 headers are included */
|
|
#pragma once
|
|
#include "crypto_hash_sha512.h"
|
|
#include "crypto_hash_sha256.h"
|
|
#include_next "sodium/crypto_auth.h"
|