OpenSSL come ottenere la velocità di AES-128 dai risultati che ho ottenuto

-1

quindi prima cosa significano questi valori sono cicli per 3 secondi?

e posso, come posso ottenere la velocità da questi risultati per AES-128?

$pi@raspberrypi:~/iot_c3 $ openssl speed aes-128-cbc
Doing aes-128 cbc for 3s on 16 size blocks: 1913880 aes-128 cbc's in 2.99s
Doing aes-128 cbc for 3s on 64 size blocks: 532956 aes-128 cbc's in 2.99s
Doing aes-128 cbc for 3s on 256 size blocks: 139795 aes-128 cbc's in 2.98s
Doing aes-128 cbc for 3s on 1024 size blocks: 35692 aes-128 cbc's in 2.99s
Doing aes-128 cbc for 3s on 8192 size blocks: 4474 aes-128 cbc's in 2.99s
OpenSSL 1.0.1t  3 May 2016
built on: Fri Jan 27 22:44:27 2017
options:bn(64,32) rc4(ptr,char) des(idx,cisc,16,long) aes(partial) blowfish(ptr) 
compiler: gcc -I. -I.. -I../include  -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DTERMIO -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wa,--noexecstack -Wall -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DAES_ASM -DGHASH_ASM
The 'numbers' are in 1000s of bytes per second processed.
type             16 bytes     64 bytes    256 bytes   1024 bytes   8192 bytes
aes-128 cbc      10241.50k    11407.75k    12009.23k    12223.61k    12257.86k
    
posta marghalany 08.08.2018 - 20:58
fonte

1 risposta

1

"n aes-128 cbc" significa che n blocchi della dimensione data sono stati crittografati. Le velocità sono elencate proprio lì in basso. Puoi verificare che aes-128 cbc abbia crittografato 4474 blocchi di 8192 byte in 2,99 secondi, fornendo 4474 * 8192 / 2,99 = 12257,86k byte al secondo.

    
risposta data 08.08.2018 - 21:39
fonte

Leggi altre domande sui tag