mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
35 lines
663 B
C
35 lines
663 B
C
|
/*
|
||
|
* copyright (c) 2010 - 2012 Espressif System
|
||
|
*
|
||
|
* esf Link List Descriptor
|
||
|
*/
|
||
|
|
||
|
#ifndef _SHA256_ALT_H_
|
||
|
#define _SHA256_ALT_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#if defined(MBEDTLS_SHA256_ALT)
|
||
|
|
||
|
#include "sha.h"
|
||
|
|
||
|
typedef SHA256_CTX mbedtls_sha256_context;
|
||
|
|
||
|
#define mbedtls_sha256_init esp_sha256_init
|
||
|
#define mbedtls_sha256_clone esp_sha256_clone
|
||
|
#define mbedtls_sha256_starts esp_sha256_starts
|
||
|
#define mbedtls_sha256_update esp_sha256_update
|
||
|
#define mbedtls_sha256_finish esp_sha256_finish
|
||
|
#define mbedtls_sha256_free esp_sha256_free
|
||
|
#define mbedtls_sha256_process esp_sha256_process
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* sha256.h */
|