diff options
author | Mattias Andrée <maandree@kth.se> | 2019-02-10 17:10:20 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2019-02-10 17:11:30 +0100 |
commit | 32a5ae4e65844615cb3e32aaefcdb7abe4af54c9 (patch) | |
tree | 0ecfa02766944f2568b184d8d5a8ba0edc71425f /behex_lower.c | |
parent | Use lowest bits rather than highest bits in complete byte, document this, and add tests (diff) | |
download | libsha2-32a5ae4e65844615cb3e32aaefcdb7abe4af54c9.tar.gz libsha2-32a5ae4e65844615cb3e32aaefcdb7abe4af54c9.tar.bz2 libsha2-32a5ae4e65844615cb3e32aaefcdb7abe4af54c9.tar.xz |
Add HMAC and use void * instead of char * for binary data
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'behex_lower.c')
-rw-r--r-- | behex_lower.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/behex_lower.c b/behex_lower.c index 476bb18..6fdf474 100644 --- a/behex_lower.c +++ b/behex_lower.c @@ -10,8 +10,9 @@ * @param n The size of `hashsum` */ void -libsha2_behex_lower(char *restrict output, const char *restrict hashsum, size_t n) +libsha2_behex_lower(char *restrict output, const void *restrict hashsum_, size_t n) { + const unsigned char *restrict hashsum = hashsum_; output[2 * n] = '\0'; while (n--) { output[2 * n + 0] = "0123456789abcdef"[(hashsum[n] >> 4) & 15]; |