mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-29 19:51:16 -04:00
- Size flist checksum data to hold the active size, not the max. - Add a negotiated hash method to the daemon auth code. - Use EVP for all openssl digests. This makes it easy to add more openssl digest methods and avoids deprecation warnings. - Support a way to re-enable deprecated digests via openssl conf file and allow a default file to be configured. - Supply a simple openssl-rsync.cnf file to enable legacy digests.
19 lines
383 B
INI
19 lines
383 B
INI
# This config file can be used with rsync to enable legacy digests
|
|
# (such as MD4) by using the OPENSSL_CONF environment variable.
|
|
# See rsync's configure --with-openssl-conf=/path/name option.
|
|
|
|
openssl_conf = openssl_init
|
|
|
|
[openssl_init]
|
|
providers = provider_sect
|
|
|
|
[provider_sect]
|
|
default = default_sect
|
|
legacy = legacy_sect
|
|
|
|
[default_sect]
|
|
activate = 1
|
|
|
|
[legacy_sect]
|
|
activate = 1
|