HPAVKeySHA.c 976 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void HPAVKeySHA (uint8_t digest [], const char * string);
  11. *
  12. * HPAVKey.h
  13. *
  14. * compute the SHA256 digest for a NUL terminated string; the
  15. * will always 256 bits (32 bytes) long for any string length;
  16. *
  17. * Contributor(s);
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef HPAVKEYSHA_SOURCE
  22. #define HPAVKEYSHA_SOURCE
  23. #include "../key/HPAVKey.h"
  24. #include "../key/SHA256.h"
  25. void HPAVKeySHA (uint8_t digest [], const char * string)
  26. {
  27. struct sha256 sha256;
  28. SHA256Reset (& sha256);
  29. SHA256Write (& sha256, string, strlen (string));
  30. SHA256Fetch (& sha256, digest);
  31. return;
  32. }
  33. #endif