2016-09-02 03:31:38 +00:00
|
|
|
/*
|
|
|
|
* copyright (c) 2010 - 2012 Espressif System
|
|
|
|
*
|
2016-08-08 09:29:28 +00:00
|
|
|
* esf Link List Descriptor
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SHA512_ALT_H_
|
|
|
|
#define _SHA512_ALT_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SHA512_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_sha512_context;
|
2016-08-08 09:29:28 +00:00
|
|
|
|
2016-09-02 03:31:38 +00:00
|
|
|
#define mbedtls_sha512_init esp_sha512_init
|
|
|
|
#define mbedtls_sha512_clone esp_sha512_clone
|
|
|
|
#define mbedtls_sha512_starts esp_sha512_start
|
|
|
|
#define mbedtls_sha512_update esp_sha512_update
|
|
|
|
#define mbedtls_sha512_finish esp_sha512_finish
|
2016-09-14 07:52:24 +00:00
|
|
|
#define mbedtls_sha512_free esp_sha512_free
|
|
|
|
#define mbedtls_sha512_process(...)
|
2016-08-08 09:29:28 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* sha512.h */
|