aes_hackery 487 B

1234567891011
  1. o Code simplification and refactoring:
  2. - Unconditionally use OpenSSL's AES implementation instead of our
  3. old built-in one. OpenSSL's AES has been better for a while, and
  4. relatively few servers should still be on any version of OpenSSL
  5. that doesn't have good optimized assembly AES.
  6. o Major features:
  7. - Use OpenSSL's EVP interface for AES encryption, so that all
  8. AES operations can use hardware acceleration (if present).
  9. Resolves issue #4442.