mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
(New) - Montgomery exponentiation: Z = X ^ Y mod M (HAC 14.94) keysize = 2048 bits RSA key operation (performance): public [21894 us], private [199119 us] RSA key operation (performance): public [18768 us], private [189051 us] RSA key operation (performance): public [16242 us], private [190821 us] keysize = 3072 bits RSA key operation (performance): public [39762 us], private [437480 us] RSA key operation (performance): public [36550 us], private [449422 us] RSA key operation (performance): public [40536 us], private [443451 us] keysize = 4096 bits RSA key operation (performance): public [65671 us], private [885215 us] RSA key operation (performance): public [60770 us], private [880936 us] RSA key operation (performance): public [68951 us], private [872027 us] (Old) - Sliding-window exponentiation: Z = X ^ Y mod M (HAC 14.85) keysize = 2048 bits RSA key operation (performance): public [93206 us], private [280189 us] RSA key operation (performance): public [93060 us], private [278893 us] RSA key operation (performance): public [97520 us], private [283252 us] keysize = 3072 bits RSA key operation (performance): public [293614 us], private [858157 us] RSA key operation (performance): public [289902 us], private [843701 us] RSA key operation (performance): public [291495 us], private [845232 us] keysize = 4096 bits RSA key operation (performance): public [653192 us], private [1912126 us] RSA key operation (performance): public [656661 us], private [1901792 us] RSA key operation (performance): public [641390 us], private [1938911 us]
38 lines
2.5 KiB
C
38 lines
2.5 KiB
C
#pragma once
|
|
|
|
/* declare the performance here */
|
|
#define IDF_PERFORMANCE_MAX_HTTPS_REQUEST_BIN_SIZE 800
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP 200
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_PSRAM 300
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE 130
|
|
#define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1000
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 30
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 27
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING 15
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA 15
|
|
/* Due to code size & linker layout differences interacting with cache, VFS
|
|
microbenchmark currently runs slower with PSRAM enabled. */
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME 20000
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM 25000
|
|
// throughput performance by iperf
|
|
#define IDF_PERFORMANCE_MIN_TCP_RX_THROUGHPUT 45
|
|
#define IDF_PERFORMANCE_MIN_TCP_TX_THROUGHPUT 40
|
|
#define IDF_PERFORMANCE_MIN_UDP_RX_THROUGHPUT 64
|
|
#define IDF_PERFORMANCE_MIN_UDP_TX_THROUGHPUT 50
|
|
// events dispatched per second by event loop library
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH 25000
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM 21000
|
|
// esp_sha() time to process 32KB of input data from RAM
|
|
#define IDF_PERFORMANCE_MAX_ESP32_TIME_SHA1_32KB 5000
|
|
#define IDF_PERFORMANCE_MAX_ESP32_TIME_SHA512_32KB 4500
|
|
// AES-CBC hardware throughput (accounts for worst-case performance with PSRAM workaround)
|
|
#define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 8.2
|
|
// floating point instructions per divide and per sqrt (configured for worst-case with PSRAM workaround)
|
|
#define IDF_PERFORMANCE_MAX_ESP32_CYCLES_PER_DIV 70
|
|
#define IDF_PERFORMANCE_MAX_ESP32_CYCLES_PER_SQRT 140
|
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 19000
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 180000
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 65000
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 850000
|