2016-11-18 05:38:22 +00:00
|
|
|
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2016-08-08 09:29:28 +00:00
|
|
|
#ifndef _SHA1_ALT_H_
|
|
|
|
#define _SHA1_ALT_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SHA1_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_sha1_context;
|
2016-08-08 09:29:28 +00:00
|
|
|
|
2016-09-02 03:31:38 +00:00
|
|
|
#define mbedtls_sha1_init esp_sha1_init
|
|
|
|
#define mbedtls_sha1_starts esp_sha1_start
|
|
|
|
#define mbedtls_sha1_clone esp_sha1_clone
|
|
|
|
#define mbedtls_sha1_update esp_sha1_update
|
|
|
|
#define mbedtls_sha1_finish esp_sha1_finish
|
|
|
|
#define mbedtls_sha1_free esp_sha1_free
|
2016-09-08 09:41:43 +00:00
|
|
|
#define mbedtls_sha1_process(...)
|
2016-08-08 09:29:28 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|