OpenSSL performance expectation
I am wondering what number I should expect in terms of encryption performance with STM32MP157C. Below is that I get
OpenSSL 1.1.1l 24 Aug 2021
# openssl engine -c
(devcrypto) /dev/crypto engine
[DES-CBC, DES-EDE3-CBC, AES-128-CBC, AES-192-CBC, AES-256-CBC, AES-128-CTR, AES-192-CTR, AES-256-CTR, AES-128-ECB, AES-192-ECB, AES-256-ECB, MD5, SHA1, SHA224, SHA256, SHA384, SHA512]
(dynamic) Dynamic engine loading support
## without devcrypto
openssl speed -evp aes-128-cbc -engine devcrypto -elapsed
The 'numbers' are in 1000s of bytes per second processed.
type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes
aes-128-cbc 7533.57k 9109.38k 9611.86k 9747.11k 9786.71k 9781.25k
## with devcrypto
openssl speed -evp aes-128-cbc -elapsed
type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes
aes-128-cbc 1898.27k 5383.32k 9960.87k 12648.11k 13443.07k 13538.65kAre these numbers to be expected?
