diff options
Diffstat (limited to 'behex_upper.c')
-rw-r--r-- | behex_upper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/behex_upper.c b/behex_upper.c index 29e5f91..cfcee75 100644 --- a/behex_upper.c +++ b/behex_upper.c @@ -10,8 +10,9 @@ * @param n The size of `hashsum` */ void -libsha2_behex_upper(char *restrict output, const char *restrict hashsum, size_t n) +libsha2_behex_upper(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]; |