hmacfile.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * Copyright 2003,2004 Red Hat, Inc.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, and the entire permission notice in its entirety,
  9. * including the disclaimer of warranties.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. The name of the author may not be used to endorse or promote
  14. * products derived from this software without specific prior
  15. * written permission.
  16. *
  17. * ALTERNATIVELY, this product may be distributed under the terms of
  18. * the GNU Public License, in which case the provisions of the GPL are
  19. * required INSTEAD OF the above restrictions. (This clause is
  20. * necessary due to a potential bad interaction between the GPL and
  21. * the restrictions contained in a BSD-style copyright.)
  22. *
  23. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  24. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  25. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  26. * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  27. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  28. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  29. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  31. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  32. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  33. * OF THE POSSIBILITY OF SUCH DAMAGE.
  34. */
  35. #include "pam_inline.h"
  36. #include <sys/types.h>
  37. #include <sys/stat.h>
  38. #include <errno.h>
  39. #include <fcntl.h>
  40. #include <stdio.h>
  41. #include <stdlib.h>
  42. #include <string.h>
  43. #include <unistd.h>
  44. #include "hmacsha1.h"
  45. static void
  46. testvectors(void)
  47. {
  48. void *hmac;
  49. size_t hmac_len;
  50. size_t i, j;
  51. char hex[3];
  52. struct vector {
  53. const char *key;
  54. int key_len;
  55. const char *data;
  56. int data_len;
  57. const char *hmac;
  58. } vectors[] = {
  59. {
  60. "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b", 20,
  61. "Hi There", 8,
  62. "b617318655057264e28bc0b6fb378c8ef146be00",
  63. },
  64. #ifdef HMAC_ALLOW_SHORT_KEYS
  65. {
  66. "Jefe", 4,
  67. "what do ya want for nothing?", 28,
  68. "effcdf6ae5eb2fa2d27416d5f184df9c259a7c79",
  69. },
  70. #endif
  71. {
  72. "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa", 20,
  73. "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd", 50,
  74. "125d7342b9ac11cd91a39af48aa17b4f63f175d3",
  75. },
  76. {
  77. "\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19", 25,
  78. "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
  79. 50,
  80. "4c9007f4026250c6bc8414f9bf50c86c2d7235da",
  81. },
  82. {
  83. "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c", 20,
  84. "Test With Truncation", 20,
  85. "4c1a03424b55e07fe7f27be1d58bb9324a9a5a04",
  86. },
  87. {
  88. "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
  89. 80,
  90. "Test Using Larger Than Block-Size Key - Hash Key First", 54,
  91. "aa4ae5e15272d00e95705637ce8a3b55ed402112",
  92. },
  93. {
  94. "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
  95. 80,
  96. "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data", 73,
  97. "e8e99d0f45237d786d6bbaa7965c7808bbff1a91",
  98. },
  99. };
  100. for (i = 0; i < PAM_ARRAY_SIZE(vectors); i++) {
  101. hmac = NULL;
  102. hmac_len = 0;
  103. hmac_sha1_generate(&hmac, &hmac_len,
  104. vectors[i].key, vectors[i].key_len,
  105. vectors[i].data, vectors[i].data_len);
  106. if (hmac != NULL) {
  107. unsigned char *hmacc = hmac;
  108. for (j = 0; j < hmac_len; j++) {
  109. snprintf(hex, sizeof(hex), "%02x",
  110. hmacc[j] & 0xff);
  111. if (strncasecmp(hex,
  112. vectors[i].hmac + 2 * j,
  113. 2) != 0) {
  114. printf("Incorrect result for vector %lu\n",
  115. (unsigned long) i + 1);
  116. exit(1);
  117. }
  118. }
  119. free(hmac);
  120. } else {
  121. printf("Error in vector %lu.\n",
  122. (unsigned long) i + 1);
  123. exit(1);
  124. }
  125. }
  126. }
  127. int
  128. main(int argc, char **argv)
  129. {
  130. void *hmac;
  131. size_t maclen;
  132. const char *keyfile;
  133. int i;
  134. size_t j;
  135. testvectors();
  136. keyfile = argv[1];
  137. for (i = 2; i < argc; i++) {
  138. hmac_sha1_generate_file(NULL, &hmac, &maclen, keyfile, -1, -1,
  139. argv[i], strlen(argv[i]));
  140. if (hmac != NULL) {
  141. unsigned char *hmacc = hmac;
  142. for (j = 0; j < maclen; j++) {
  143. printf("%02x", hmacc[j] & 0xff);
  144. }
  145. printf(" %s\n", argv[i]);
  146. free(hmac);
  147. }
  148. }
  149. return 0;
  150. }