gcrypt-hash.hh 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* GNU Guix --- Functional package management for GNU
  2. Copyright (C) 2012, 2013 Ludovic Courtès <ludo@gnu.org>
  3. This file is part of GNU Guix.
  4. GNU Guix is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at
  7. your option) any later version.
  8. GNU Guix 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. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. */
  14. /* An OpenSSL-like interface to GNU libgcrypt cryptographic hash
  15. functions. */
  16. #pragma once
  17. #include <gcrypt.h>
  18. #include <unistd.h>
  19. struct guix_hash_context
  20. {
  21. /* This copy constructor is needed in 'HashSink::currentHash()' where we
  22. expect the copy of a 'Ctx' object to yield a truly different context. */
  23. guix_hash_context (guix_hash_context &ref)
  24. {
  25. if (ref.md_handle == NULL)
  26. md_handle = NULL;
  27. else
  28. gcry_md_copy (&md_handle, ref.md_handle);
  29. }
  30. /* Make sure 'md_handle' is always initialized. */
  31. guix_hash_context (): md_handle (NULL) { };
  32. gcry_md_hd_t md_handle;
  33. };
  34. extern "C" {
  35. extern void guix_hash_init (struct guix_hash_context *ctx, int algo);
  36. extern void guix_hash_update (struct guix_hash_context *ctx, const void *buffer,
  37. size_t len);
  38. extern void guix_hash_final (void *resbuf, struct guix_hash_context *ctx,
  39. int algo);
  40. }