ctf-sha1.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* SHA-1 thunks.
  2. Copyright (C) 2019-2022 Free Software Foundation, Inc.
  3. This file is part of libctf.
  4. libctf is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free
  6. Software Foundation; either version 3, or (at your option) any later
  7. version.
  8. This program is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. See the GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; see the file COPYING. If not see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <ctf-impl.h>
  16. #include <ctf-sha1.h>
  17. static const char hex[] = "0123456789abcdef";
  18. char *
  19. ctf_sha1_fini (ctf_sha1_t *sha1, char *buf)
  20. {
  21. size_t i;
  22. /* Alignment suitable for a uint32_t. */
  23. union
  24. {
  25. uint32_t align;
  26. unsigned char digest[((CTF_SHA1_SIZE - 1) / 2) + 1];
  27. } align;
  28. sha1_finish_ctx (sha1, align.digest);
  29. if (!buf)
  30. return NULL;
  31. buf[CTF_SHA1_SIZE - 1] = '\0';
  32. for (i = 0; i < (CTF_SHA1_SIZE - 1) / 2; i++)
  33. {
  34. buf[2 * i] = hex[align.digest[i] >> 4];
  35. buf[2 * i + 1] = hex[align.digest[i] & 0xf];
  36. }
  37. return buf;
  38. }