diff options
author | Taylor Yu <catalyst@torproject.org> | 2017-04-07 17:54:50 -0400 |
---|---|---|
committer | Taylor Yu <catalyst@torproject.org> | 2017-04-07 18:18:23 -0400 |
commit | 2b38bb28b470dbca322ae64b7c5eaef9cd7206fa (patch) | |
tree | 54733a5095c13dab2fb9ab7378c26adf530dcd83 /src/common/util_format.h | |
parent | 00ffefb41bc63d17ff68b7af2c9e8253715c12f3 (diff) | |
download | tor-2b38bb28b470dbca322ae64b7c5eaef9cd7206fa.tar.gz tor-2b38bb28b470dbca322ae64b7c5eaef9cd7206fa.zip |
Remove base64_decode_nopad()
Remove base64_decode_nopad() because it is redundant now that
base64_decode() correctly handles both padded and unpadded base64
encodings with "right-sized" output buffers.
Diffstat (limited to 'src/common/util_format.h')
-rw-r--r-- | src/common/util_format.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/util_format.h b/src/common/util_format.h index c92805246f..adf48c0077 100644 --- a/src/common/util_format.h +++ b/src/common/util_format.h @@ -37,8 +37,6 @@ int base64_encode(char *dest, size_t destlen, const char *src, size_t srclen, int base64_decode(char *dest, size_t destlen, const char *src, size_t srclen); int base64_encode_nopad(char *dest, size_t destlen, const uint8_t *src, size_t srclen); -int base64_decode_nopad(uint8_t *dest, size_t destlen, - const char *src, size_t srclen); /** Characters that can appear (case-insensitively) in a base32 encoding. */ #define BASE32_CHARS "abcdefghijklmnopqrstuvwxyz234567" |