mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
17 lines
676 B
C
17 lines
676 B
C
/*
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// ECC peripheral output at 160MHz
|
|
#define IDF_PERFORMANCE_MAX_ECP_P192_POINT_MULTIPLY_OP 5000
|
|
#define IDF_PERFORMANCE_MAX_ECP_P192_POINT_VERIFY_OP 60
|
|
#define IDF_PERFORMANCE_MAX_ECP_P256_POINT_MULTIPLY_OP 8400
|
|
#define IDF_PERFORMANCE_MAX_ECP_P256_POINT_VERIFY_OP 70
|
|
|
|
#define IDF_PERFORMANCE_MAX_ECDSA_P192_VERIFY_OP 18000
|
|
#define IDF_PERFORMANCE_MAX_ECDSA_P256_VERIFY_OP 27000
|