diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-01-17 16:08:28 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-17 16:08:28 -0500 |
commit | e0581a4b571f13dd0de801792c853e22ac244a36 (patch) | |
tree | b309c47048cb98323c197dff1df010923f8dc09d /src/common/crypto.h | |
parent | eea69b7020dbd1bfa172f3660be2e5644fd9687f (diff) | |
download | tor-e0581a4b571f13dd0de801792c853e22ac244a36.tar.gz tor-e0581a4b571f13dd0de801792c853e22ac244a36.zip |
Replace base-{16,32,64} with base{16,32,64} in the code
Patch from onizuka generated with
find ./ -type f -perm -u+rw -exec sed -ri 's/(Base)-(16|32|64)/\1\2/gi' {} \;
Fixes issue 6875 on Tor.
Diffstat (limited to 'src/common/crypto.h')
-rw-r--r-- | src/common/crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/crypto.h b/src/common/crypto.h index 24f6a48bcc..08efc801d3 100644 --- a/src/common/crypto.h +++ b/src/common/crypto.h @@ -266,7 +266,7 @@ void smartlist_shuffle(struct smartlist_t *sl); 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); -/** Characters that can appear (case-insensitively) in a base-32 encoding. */ +/** Characters that can appear (case-insensitively) in a base32 encoding. */ #define BASE32_CHARS "abcdefghijklmnopqrstuvwxyz234567" void base32_encode(char *dest, size_t destlen, const char *src, size_t srclen); int base32_decode(char *dest, size_t destlen, const char *src, size_t srclen); |