mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-14 07:03:44 +01:00
12 lines
487 B
Plaintext
12 lines
487 B
Plaintext
|
o Code simplification and refactoring:
|
||
|
- Unconditionally use OpenSSL's AES implementation instead of our
|
||
|
old built-in one. OpenSSL's AES has been better for a while, and
|
||
|
relatively few servers should still be on any version of OpenSSL
|
||
|
that doesn't have good optimized assembly AES.
|
||
|
|
||
|
o Major features:
|
||
|
- Use OpenSSL's EVP interface for AES encryption, so that all
|
||
|
AES operations can use hardware acceleration (if present).
|
||
|
Resolves issue #4442.
|
||
|
|