HPAVKeySpec.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void HPAVKeySpec (const char * string);
  11. *
  12. * HPAVKey.h
  13. *
  14. * confirm that a string is a legal HomePlug AV pass phrase; return
  15. * on success; exit the program on failure; legal pass phrases have
  16. * 12 to 64 characters ranging from 0x20 thru 0x7F;
  17. *
  18. * this function is intended to check pass phrases entered from the
  19. * command line as arguments therefore it explains why it failed;
  20. *
  21. *
  22. * Contributor(s);
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef HPAVKEYSPEC_SOURCE
  27. #define HPAVKEYSPEC_SOURCE
  28. #include <ctype.h>
  29. #include "../tools/error.h"
  30. #include "../key/HPAVKey.h"
  31. void HPAVKeySpec (const char * string)
  32. {
  33. const char * sp = string;
  34. while (isprint ((unsigned char)* sp))
  35. {
  36. sp++;
  37. }
  38. if (* sp)
  39. {
  40. error (1, ENOTSUP, "Phrase \"%s\" has illegal characters", string);
  41. }
  42. if ((sp - string) < HPAVKEY_PHRASE_MIN)
  43. {
  44. error (1, ENOTSUP, "Phrase \"%s\" less than %d characters", string, HPAVKEY_PHRASE_MIN);
  45. }
  46. if ((sp - string) > HPAVKEY_PHRASE_MAX)
  47. {
  48. error (1, ENOTSUP, "Phrase \"%s\" more than %d characters", string, HPAVKEY_PHRASE_MAX);
  49. }
  50. return;
  51. }
  52. #endif