mirror of
https://github.com/MariaDB/server.git
synced 2026-04-18 14:25:32 +02:00
Instead of encrypt(src, dst, key, iv) that encrypts all data in one go, now we have encrypt_init(key,iv), encrypt_update(src,dst), and encrypt_finish(dst). This also causes collateral changes in the internal my_crypt.cc encryption functions and in the encryption service. There are wrappers to provide the old all-at-once encryption functionality. But binlog events are often written piecewise, they'll need the new api. |
||
|---|---|---|
| .. | ||
| CMakeLists.txt | ||
| my_crypt.cc | ||
| my_md5.cc | ||
| my_rnd.cc | ||
| my_sha1.cc | ||
| my_sha2.cc | ||
| yassl.cc | ||