diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-01-03 16:16:53 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-01-03 16:16:53 -0500 |
commit | 0222228d64bf29a3b9db5a80a557e20c3c360224 (patch) | |
tree | 6f5f34234eee175cf51d5b6aadd55d78d2856031 /src/common | |
parent | f089804332c0289159ec432d8ce82bb1ed6316aa (diff) | |
download | tor-0222228d64bf29a3b9db5a80a557e20c3c360224.tar.gz tor-0222228d64bf29a3b9db5a80a557e20c3c360224.zip |
Fix up size and sign issues in base32 code
Fixes bug 2331.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/crypto.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index 65162618a3..71cf6d43d8 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -2412,9 +2412,10 @@ digest256_from_base64(char *digest, const char *d64) void base32_encode(char *dest, size_t destlen, const char *src, size_t srclen) { - unsigned int i, bit, v, u; - size_t nbits = srclen * 8; + unsigned int i, v, u; + size_t nbits = srclen * 8, bit; + tor_assert(srclen < SIZE_T_CEILING/8); tor_assert((nbits%5) == 0); /* We need an even multiple of 5 bits. */ tor_assert((nbits/5)+1 <= destlen); /* We need enough space. */ tor_assert(destlen < SIZE_T_CEILING); @@ -2438,11 +2439,12 @@ base32_decode(char *dest, size_t destlen, const char *src, size_t srclen) { /* XXXX we might want to rewrite this along the lines of base64_decode, if * it ever shows up in the profile. */ - unsigned int i, j, bit; - size_t nbits; + unsigned int i, bit; + size_t nbits, j; char *tmp; nbits = srclen * 5; + tor_assert(srclen < SIZE_T_CEILING / 5); tor_assert((nbits%8) == 0); /* We need an even multiple of 8 bits. */ tor_assert((nbits/8) <= destlen); /* We need enough space. */ tor_assert(destlen < SIZE_T_CEILING); |