mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
5d53862139
* Move out code that depends on NSS to crypto_digest_nss.c * Move out code that depends on OpenSSL to crypto_digest_openssl.c * Keep the general code that is not specific to any of the above in crypto_digest.c
6 lines
354 B
Plaintext
6 lines
354 B
Plaintext
o Code simplification and refactoring:
|
|
- Split crypto_digest.c into three parts: 1) general code that does not
|
|
depend on either NSS or OpenSSL (stays in crypto_digest.c); 2) code that
|
|
depends on NSS API (moved to crypto_digest_nss.c); 3) code that depends
|
|
on OpenSSL API (moved to crypto_digest_openssl.c). Resolves ticket 29108.
|