sha256.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* Declaration of functions and data types used for SHA256 sum computing
  2. library functions.
  3. Copyright (C) 2007 Free Software Foundation, Inc.
  4. This file is part of the GNU C Library.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, write to the Free
  15. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. 02111-1307 USA. */
  17. #ifndef _SHA256_H
  18. #define _SHA256_H 1
  19. #include <limits.h>
  20. #include <stdint.h>
  21. #include <stdio.h>
  22. /* Structure to save state of computation between the single steps. */
  23. struct sha256_ctx
  24. {
  25. uint32_t H[8];
  26. uint32_t total[2];
  27. uint32_t buflen;
  28. char buffer[128] __attribute__ ((__aligned__ (__alignof__ (uint32_t))));
  29. };
  30. /* Initialize structure containing state of computation.
  31. (FIPS 180-2: 5.3.2) */
  32. extern void __sha256_init_ctx (struct sha256_ctx *ctx) attribute_hidden;
  33. /* Starting with the result of former calls of this function (or the
  34. initialization function update the context for the next LEN bytes
  35. starting at BUFFER.
  36. It is NOT required that LEN is a multiple of 64. */
  37. extern void __sha256_process_bytes (const void *buffer, size_t len,
  38. struct sha256_ctx *ctx) attribute_hidden;
  39. /* Process the remaining bytes in the buffer and put result from CTX
  40. in first 32 bytes following RESBUF.
  41. IMPORTANT: On some systems it is required that RESBUF is correctly
  42. aligned for a 32 bits value. */
  43. extern void *__sha256_finish_ctx (struct sha256_ctx *ctx, void *resbuf)
  44. attribute_hidden;
  45. #endif /* sha256.h */