Use a custom Base64 encoder with more control over the output format.

This commit is contained in:
Yawning Angel
2015-04-10 11:25:08 +00:00
committed by Nick Mathewson
parent ba2485f7df
commit 196499da73
13 changed files with 216 additions and 61 deletions
+4
View File
@@ -1,3 +1,7 @@
o Code simplifications and refactoring:
- Use our own Base64 encoder instead of OpenSSL's, to allow more control
over the output. Part of ticket 15652.
o Removed code:
- Remove `USE_OPENSSL_BASE64` and the corresponding fallback code and
always use the internal Base64 decoder. The internal decoder has been