2020-02-28 10:12:11 -05:00
|
|
|
#pragma once
|
|
|
|
|
2020-03-10 01:53:09 -04:00
|
|
|
#define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 43.0
|
|
|
|
#define IDF_PERFORMANCE_MIN_AES_GCM_THROUGHPUT_MBSEC 2.1
|
2020-02-28 10:12:11 -05:00
|
|
|
|
|
|
|
// SHA256 hardware throughput at 240MHz, threshold set lower than worst case
|
2020-03-10 01:53:09 -04:00
|
|
|
#define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 70.0
|
2020-02-28 10:12:11 -05:00
|
|
|
// esp_sha() time to process 32KB of input data from RAM
|
2020-03-10 01:53:09 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_TIME_SHA1_32KB 900
|
|
|
|
#define IDF_PERFORMANCE_MAX_TIME_SHA512_32KB 800
|
2020-02-28 10:12:11 -05:00
|
|
|
|
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 14000
|
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 100000
|
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 60000
|
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 600000
|
|
|
|
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 32
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 30
|