2016-09-02 03:31:38 +00:00
|
|
|
/*
|
|
|
|
* copyright (c) 2010 - 2012 Espressif System
|
|
|
|
*
|
2016-08-08 09:29:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SHA256_ALT_H_
|
|
|
|
#define _SHA256_ALT_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SHA256_ALT)
|
|
|
|
|
2016-09-08 09:41:43 +00:00
|
|
|
#include "hwcrypto/sha.h"
|
2016-08-08 09:29:28 +00:00
|
|
|
|
2016-09-08 09:41:43 +00:00
|
|
|
typedef esp_sha_context mbedtls_sha256_context;
|
2016-08-08 09:29:28 +00:00
|
|
|
|
2016-09-02 03:31:38 +00:00
|
|
|
#define mbedtls_sha256_init esp_sha256_init
|
|
|
|
#define mbedtls_sha256_clone esp_sha256_clone
|
|
|
|
#define mbedtls_sha256_starts esp_sha256_start
|
|
|
|
#define mbedtls_sha256_update esp_sha256_update
|
|
|
|
#define mbedtls_sha256_finish esp_sha256_finish
|
|
|
|
#define mbedtls_sha256_free esp_sha256_free
|
2016-09-08 09:41:43 +00:00
|
|
|
#define mbedtls_sha256_process(...)
|
2016-08-08 09:29:28 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* sha256.h */
|