diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-06-10 16:15:20 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-06-10 16:15:20 +0000 |
commit | 613b81932842d24fd6ba89d6f93402bbf4966a9c (patch) | |
tree | ed7c44cc64f2f353c28b9e49afd6ff55e7c2b0d5 /lib/libcrypto | |
parent | acf798935a6134a5662826ef0dac137d1aeb1804 (diff) |
Abandon the auto-ENGINE /dev/crypto interface. VIA 3des cbc receives
collateral damage.
The syncronous nature of this mechanism has hampered performance for
symmetric crypto relative to brute-force cpu. The assymetric crypto
support never really materialized in drivers.
So abandon the complexity.
ok tedu beck mikeb
some disagrement from djm but if he wants to test /dev/crypto ciphers
he should do it without this this gigantic API in the way
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/crypto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/crypto/Makefile b/lib/libcrypto/crypto/Makefile index 1e2ce774d3b..e71912dd575 100644 --- a/lib/libcrypto/crypto/Makefile +++ b/lib/libcrypto/crypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.38 2014/06/02 15:08:38 deraadt Exp $ +# $OpenBSD: Makefile,v 1.39 2014/06/10 16:15:19 deraadt Exp $ LIB= crypto @@ -132,7 +132,7 @@ SRCS+= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c SRCS+= eng_table.c eng_pkey.c eng_fat.c eng_all.c SRCS+= tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c SRCS+= tb_cipher.c tb_digest.c tb_pkmeth.c tb_asnmth.c -SRCS+= eng_openssl.c eng_cnf.c eng_dyn.c hw_cryptodev.c +SRCS+= eng_openssl.c eng_cnf.c eng_dyn.c SRCS+= eng_rsax.c # XXX unnecessary? handled in EVP now... # SRCS+= eng_aesni.c # local addition |