2022-01-17 06:17:32 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-05-13 00:32:45 -04:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <assert.h>
|
2020-08-13 04:30:59 -04:00
|
|
|
#include "hal/sha_types.h"
|
2020-10-28 22:51:36 -04:00
|
|
|
#include "soc/soc_caps.h"
|
2020-08-13 04:30:59 -04:00
|
|
|
#include "esp_log.h"
|
2019-11-05 22:07:16 -05:00
|
|
|
|
2019-05-13 00:32:45 -04:00
|
|
|
#include <mbedtls/sha1.h>
|
|
|
|
#include <mbedtls/sha256.h>
|
|
|
|
#include <mbedtls/sha512.h>
|
|
|
|
|
2020-08-13 04:30:59 -04:00
|
|
|
#if SOC_SHA_SUPPORT_PARALLEL_ENG
|
|
|
|
#include "sha/sha_parallel_engine.h"
|
|
|
|
#elif SOC_SHA_SUPPORT_DMA
|
|
|
|
#include "sha/sha_dma.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const char *TAG = "esp_sha";
|
2019-11-05 22:07:16 -05:00
|
|
|
|
2019-05-13 00:32:45 -04:00
|
|
|
void esp_sha(esp_sha_type sha_type, const unsigned char *input, size_t ilen, unsigned char *output)
|
|
|
|
{
|
2020-11-05 22:50:22 -05:00
|
|
|
union {
|
|
|
|
#if SOC_SHA_SUPPORT_SHA1
|
|
|
|
mbedtls_sha1_context sha1;
|
|
|
|
#endif
|
|
|
|
#if SOC_SHA_SUPPORT_SHA256
|
|
|
|
mbedtls_sha256_context sha256;
|
|
|
|
#endif
|
|
|
|
#if SOC_SHA_SUPPORT_SHA384 || SOC_SHA_SUPPORT_SHA512
|
|
|
|
mbedtls_sha512_context sha512;
|
|
|
|
#endif
|
|
|
|
} ctx;
|
|
|
|
|
2021-02-12 00:01:05 -05:00
|
|
|
int ret __attribute__((unused));
|
2019-05-13 00:32:45 -04:00
|
|
|
assert(input != NULL && output != NULL);
|
|
|
|
|
2020-08-13 04:30:59 -04:00
|
|
|
#if SOC_SHA_SUPPORT_SHA1
|
2019-05-13 00:32:45 -04:00
|
|
|
if (sha_type == SHA1) {
|
2020-11-05 22:50:22 -05:00
|
|
|
mbedtls_sha1_init(&ctx.sha1);
|
2021-05-28 09:13:32 -04:00
|
|
|
mbedtls_sha1_starts(&ctx.sha1);
|
|
|
|
ret = mbedtls_sha1_update(&ctx.sha1, input, ilen);
|
2019-05-13 00:32:45 -04:00
|
|
|
assert(ret == 0);
|
2021-05-28 09:13:32 -04:00
|
|
|
ret = mbedtls_sha1_finish(&ctx.sha1, output);
|
2019-05-13 00:32:45 -04:00
|
|
|
assert(ret == 0);
|
2020-11-05 22:50:22 -05:00
|
|
|
mbedtls_sha1_free(&ctx.sha1);
|
2020-08-13 04:30:59 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif //SOC_SHA_SUPPORT_SHA1
|
2019-05-13 00:32:45 -04:00
|
|
|
|
2020-08-13 04:30:59 -04:00
|
|
|
#if SOC_SHA_SUPPORT_SHA256
|
|
|
|
if (sha_type == SHA2_256) {
|
2020-11-05 22:50:22 -05:00
|
|
|
mbedtls_sha256_init(&ctx.sha256);
|
2021-05-28 09:13:32 -04:00
|
|
|
mbedtls_sha256_starts(&ctx.sha256, 0);
|
|
|
|
ret = mbedtls_sha256_update(&ctx.sha256, input, ilen);
|
2019-05-13 00:32:45 -04:00
|
|
|
assert(ret == 0);
|
2021-05-28 09:13:32 -04:00
|
|
|
ret = mbedtls_sha256_finish(&ctx.sha256, output);
|
2019-05-13 00:32:45 -04:00
|
|
|
assert(ret == 0);
|
2020-11-05 22:50:22 -05:00
|
|
|
mbedtls_sha256_free(&ctx.sha256);
|
2020-08-13 04:30:59 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif //SOC_SHA_SUPPORT_SHA256
|
2019-05-13 00:32:45 -04:00
|
|
|
|
2020-08-13 04:30:59 -04:00
|
|
|
#if SOC_SHA_SUPPORT_SHA384
|
|
|
|
if (sha_type == SHA2_384) {
|
2020-11-05 22:50:22 -05:00
|
|
|
mbedtls_sha512_init(&ctx.sha512);
|
2021-05-28 09:13:32 -04:00
|
|
|
mbedtls_sha512_starts(&ctx.sha512, 1);
|
|
|
|
ret = mbedtls_sha512_update(&ctx.sha512, input, ilen);
|
2019-05-13 00:32:45 -04:00
|
|
|
assert(ret == 0);
|
2021-05-28 09:13:32 -04:00
|
|
|
ret = mbedtls_sha512_finish(&ctx.sha512, output);
|
2019-05-13 00:32:45 -04:00
|
|
|
assert(ret == 0);
|
2020-11-05 22:50:22 -05:00
|
|
|
mbedtls_sha512_free(&ctx.sha512);
|
2020-08-13 04:30:59 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif //SOC_SHA_SUPPORT_SHA384
|
2019-05-13 00:32:45 -04:00
|
|
|
|
2020-08-13 04:30:59 -04:00
|
|
|
#if SOC_SHA_SUPPORT_SHA512
|
|
|
|
if (sha_type == SHA2_512) {
|
2020-11-05 22:50:22 -05:00
|
|
|
mbedtls_sha512_init(&ctx.sha512);
|
2021-05-28 09:13:32 -04:00
|
|
|
mbedtls_sha512_starts(&ctx.sha512, 0);
|
|
|
|
ret = mbedtls_sha512_update(&ctx.sha512, input, ilen);
|
2019-05-13 00:32:45 -04:00
|
|
|
assert(ret == 0);
|
2021-05-28 09:13:32 -04:00
|
|
|
ret = mbedtls_sha512_finish(&ctx.sha512, output);
|
2019-05-13 00:32:45 -04:00
|
|
|
assert(ret == 0);
|
2020-11-05 22:50:22 -05:00
|
|
|
mbedtls_sha512_free(&ctx.sha512);
|
2020-08-13 04:30:59 -04:00
|
|
|
return;
|
2019-05-13 00:32:45 -04:00
|
|
|
}
|
2020-08-13 04:30:59 -04:00
|
|
|
#endif //SOC_SHA_SUPPORT_SHA512
|
2019-05-13 00:32:45 -04:00
|
|
|
|
2022-01-17 06:17:32 -05:00
|
|
|
ESP_LOGE(TAG, "SHA type %d not supported", (int)sha_type);
|
2020-08-13 04:30:59 -04:00
|
|
|
abort();
|
2019-05-13 00:32:45 -04:00
|
|
|
}
|