commit | 049756be467500458e63bf274e94ed2c23b4d513 | [log] [tgz] |
---|---|---|
author | David Benjamin <davidben@chromium.org> | Wed May 27 01:00:07 2015 -0400 |
committer | Adam Langley <agl@google.com> | Mon Jun 01 22:12:21 2015 +0000 |
tree | 2e17f81e9844317b18d5400c2cde6b7206f872b6 | |
parent | 338e06771c600108ba8b1e3df6a15a8920961c37 [diff] |
Fix integer types in low-level hash functions. Use sized integer types rather than unsigned char/int/long. The latter two are especially a mess as they're both used in lieu of uint32_t. Sometimes the code just blindly uses unsigned long and sometimes it uses unsigned int when an LP64 architecture would notice. Change-Id: I4c5c6aaf82cfe9fe523435588d286726a7c43056 Reviewed-on: https://boringssl-review.googlesource.com/4952 Reviewed-by: Adam Langley <agl@google.com>