Changes between Version 10 and Version 11 of linux/encryption
- Timestamp:
- 05/27/2020 08:27:36 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
linux/encryption
v10 v11 151 151 tar xvf openssl-* 152 152 cd 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 154 155 make 155 156 make install … … 157 158 158 159 # Remove cryptodev module to test afalg 159 rmmod cryptodev; modprobe af_alg algif_hash algif_aead algif_skcipher algif_rng160 rmmod cryptodev; for i in af_alg algif_hash algif_skcipher algif_rng algif_aead; do modprobe $i; done 160 161 openssl speed -evp aes-256-cbc -engine afalg -elapsed 161 162