test-ms_funcs.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Test program for ms_funcs
  3. * Copyright (c) 2003-2006, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "crypto/ms_funcs.c"
  9. int main(int argc, char *argv[])
  10. {
  11. /* Test vector from RFC2759 example */
  12. char *username = "User";
  13. char *password = "clientPass";
  14. u8 auth_challenge[] = {
  15. 0x5B, 0x5D, 0x7C, 0x7D, 0x7B, 0x3F, 0x2F, 0x3E,
  16. 0x3C, 0x2C, 0x60, 0x21, 0x32, 0x26, 0x26, 0x28
  17. };
  18. u8 peer_challenge[] = {
  19. 0x21, 0x40, 0x23, 0x24, 0x25, 0x5E, 0x26, 0x2A,
  20. 0x28, 0x29, 0x5F, 0x2B, 0x3A, 0x33, 0x7C, 0x7E
  21. };
  22. u8 challenge[] = { 0xD0, 0x2E, 0x43, 0x86, 0xBC, 0xE9, 0x12, 0x26 };
  23. u8 password_hash[] = {
  24. 0x44, 0xEB, 0xBA, 0x8D, 0x53, 0x12, 0xB8, 0xD6,
  25. 0x11, 0x47, 0x44, 0x11, 0xF5, 0x69, 0x89, 0xAE
  26. };
  27. u8 nt_response[] = {
  28. 0x82, 0x30, 0x9E, 0xCD, 0x8D, 0x70, 0x8B, 0x5E,
  29. 0xA0, 0x8F, 0xAA, 0x39, 0x81, 0xCD, 0x83, 0x54,
  30. 0x42, 0x33, 0x11, 0x4A, 0x3D, 0x85, 0xD6, 0xDF
  31. };
  32. u8 password_hash_hash[] = {
  33. 0x41, 0xC0, 0x0C, 0x58, 0x4B, 0xD2, 0xD9, 0x1C,
  34. 0x40, 0x17, 0xA2, 0xA1, 0x2F, 0xA5, 0x9F, 0x3F
  35. };
  36. u8 authenticator_response[] = {
  37. 0x40, 0x7A, 0x55, 0x89, 0x11, 0x5F, 0xD0, 0xD6,
  38. 0x20, 0x9F, 0x51, 0x0F, 0xE9, 0xC0, 0x45, 0x66,
  39. 0x93, 0x2C, 0xDA, 0x56
  40. };
  41. u8 master_key[] = {
  42. 0xFD, 0xEC, 0xE3, 0x71, 0x7A, 0x8C, 0x83, 0x8C,
  43. 0xB3, 0x88, 0xE5, 0x27, 0xAE, 0x3C, 0xDD, 0x31
  44. };
  45. u8 send_start_key[] = {
  46. 0x8B, 0x7C, 0xDC, 0x14, 0x9B, 0x99, 0x3A, 0x1B,
  47. 0xA1, 0x18, 0xCB, 0x15, 0x3F, 0x56, 0xDC, 0xCB
  48. };
  49. u8 buf[32];
  50. int errors = 0;
  51. printf("Testing ms_funcs.c\n");
  52. if (challenge_hash(peer_challenge, auth_challenge,
  53. (u8 *) username, strlen(username),
  54. buf) ||
  55. memcmp(challenge, buf, sizeof(challenge)) != 0) {
  56. printf("challenge_hash failed\n");
  57. errors++;
  58. }
  59. if (nt_password_hash((u8 *) password, strlen(password), buf) ||
  60. memcmp(password_hash, buf, sizeof(password_hash)) != 0) {
  61. printf("nt_password_hash failed\n");
  62. errors++;
  63. }
  64. if (generate_nt_response(auth_challenge, peer_challenge,
  65. (u8 *) username, strlen(username),
  66. (u8 *) password, strlen(password),
  67. buf) ||
  68. memcmp(nt_response, buf, sizeof(nt_response)) != 0) {
  69. printf("generate_nt_response failed\n");
  70. errors++;
  71. }
  72. if (hash_nt_password_hash(password_hash, buf) ||
  73. memcmp(password_hash_hash, buf, sizeof(password_hash_hash)) != 0) {
  74. printf("hash_nt_password_hash failed\n");
  75. errors++;
  76. }
  77. if (generate_authenticator_response((u8 *) password, strlen(password),
  78. peer_challenge, auth_challenge,
  79. (u8 *) username, strlen(username),
  80. nt_response, buf) ||
  81. memcmp(authenticator_response, buf, sizeof(authenticator_response))
  82. != 0) {
  83. printf("generate_authenticator_response failed\n");
  84. errors++;
  85. }
  86. if (get_master_key(password_hash_hash, nt_response, buf) ||
  87. memcmp(master_key, buf, sizeof(master_key)) != 0) {
  88. printf("get_master_key failed\n");
  89. errors++;
  90. }
  91. if (get_asymetric_start_key(master_key, buf, sizeof(send_start_key),
  92. 1, 1) ||
  93. memcmp(send_start_key, buf, sizeof(send_start_key)) != 0) {
  94. printf("get_asymetric_start_key failed\n");
  95. errors++;
  96. }
  97. if (errors)
  98. printf("FAILED! %d errors\n", errors);
  99. return errors;
  100. }