You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

md5_test.c 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. FILE_LICENCE ( GPL2_OR_LATER );
  19. /** @file
  20. *
  21. * MD5 tests
  22. *
  23. */
  24. #include <stdint.h>
  25. #include <ipxe/md5.h>
  26. #include <ipxe/test.h>
  27. #include "digest_test.h"
  28. /** An MD5 test vector */
  29. struct md5_test_vector {
  30. /** Test data */
  31. void *data;
  32. /** Test data length */
  33. size_t len;
  34. /** Expected digest */
  35. uint8_t digest[MD5_DIGEST_SIZE];
  36. };
  37. /** MD5 test vectors */
  38. static struct md5_test_vector md5_test_vectors[] = {
  39. /* Test inputs borrowed from SHA-1 tests, with results
  40. * calculated using md5sum.
  41. */
  42. { NULL, 0,
  43. { 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
  44. 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e } },
  45. { "abc", 3,
  46. { 0x90, 0x01, 0x50, 0x98, 0x3c, 0xd2, 0x4f, 0xb0,
  47. 0xd6, 0x96, 0x3f, 0x7d, 0x28, 0xe1, 0x7f, 0x72 } },
  48. { "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 56,
  49. { 0x82, 0x15, 0xef, 0x07, 0x96, 0xa2, 0x0b, 0xca,
  50. 0xaa, 0xe1, 0x16, 0xd3, 0x87, 0x6c, 0x66, 0x4a } },
  51. };
  52. /** MD5 test fragment lists */
  53. static struct digest_test_fragments md5_test_fragments[] = {
  54. { { 0, -1UL, } },
  55. { { 1, 1, 1, 1, 1, 1, 1, 1 } },
  56. { { 2, 0, 23, 4, 6, 1, 0 } },
  57. };
  58. /**
  59. * Perform MD5 self-test
  60. *
  61. */
  62. static void md5_test_exec ( void ) {
  63. struct digest_algorithm *digest = &md5_algorithm;
  64. struct md5_test_vector *test;
  65. unsigned int i;
  66. unsigned int j;
  67. for ( i = 0 ; i < ( sizeof ( md5_test_vectors ) /
  68. sizeof ( md5_test_vectors[0] ) ) ; i++ ) {
  69. test = &md5_test_vectors[i];
  70. /* Test with a single pass */
  71. digest_ok ( digest, NULL, test->data, test->len, test->digest );
  72. /* Test with fragment lists */
  73. for ( j = 0 ; j < ( sizeof ( md5_test_fragments ) /
  74. sizeof ( md5_test_fragments[0] ) ) ; j++ ){
  75. digest_ok ( digest, &md5_test_fragments[j],
  76. test->data, test->len, test->digest );
  77. }
  78. }
  79. }
  80. /** MD5 self-test */
  81. struct self_test md5_test __self_test = {
  82. .name = "md5",
  83. .exec = md5_test_exec,
  84. };