HPAVKeyOut.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void HPAVKeyOut (byte digest [], size_t length, const char * phrase, flag_t flags);
  11. *
  12. * HPAVKey.h
  13. *
  14. * print a digest in hexadecimal format on stdout; also print the
  15. * phrase after the digest if the HPAVKEY_VERBOSE flag bit is set;
  16. *
  17. * Contributor(s);
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef HPAVKEYOUT_SOURCE
  22. #define HPAVKEYOUT_SOURCE
  23. #include <stdio.h>
  24. #include "../key/HPAVKey.h"
  25. #include "../tools/memory.h"
  26. #include "../tools/number.h"
  27. #include "../tools/types.h"
  28. #include "../tools/flags.h"
  29. void HPAVKeyOut (const uint8_t digest [], size_t length, const char * phrase, flag_t flags)
  30. {
  31. hexout (digest, length, 0, 0, stdout);
  32. if (_anyset (flags, HPAVKEY_VERBOSE))
  33. {
  34. printf (" %s", phrase);
  35. }
  36. printf ("\n");
  37. return;
  38. }
  39. #endif