test_ms_funcs.c 3.3 KB

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