Changes between Version 10 and Version 11 of linux/encryption


Ignore:
Timestamp:
05/27/2020 08:27:36 PM (4 years ago)
Author:
Bobby Jones
Comment:

Update configure command for performance comparison building

Legend:

Unmodified
Added
Removed
Modified
  • linux/encryption

    v10 v11  
    151151tar xvf openssl-*
    152152cd openssl-*
    153 ./config disable-engine disable-dso disable-dynamic-engine enable-devcryptoeng enable-afalgeng
     153# Use linux-armv4 in place of linux-aarch64 for Ventana boards
     154./Configure enable-engine enable-dso enable-devcryptoeng enable-afalgeng disable-dynamic-engine no-hw-padlock linux-aarch64
    154155make
    155156make install
     
    157158
    158159# Remove cryptodev module to test afalg
    159 rmmod cryptodev; modprobe af_alg algif_hash algif_aead algif_skcipher algif_rng
     160rmmod cryptodev; for i in af_alg algif_hash algif_skcipher algif_rng algif_aead; do modprobe $i; done
    160161openssl speed -evp aes-256-cbc -engine afalg -elapsed
    161162