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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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., 51 Franklin Street, Fifth Floor, Boston, MA
  17. * 02110-1301, USA.
  18. */
  19. FILE_LICENCE ( GPL2_OR_LATER );
  20. /** @file
  21. *
  22. * MD5 tests
  23. *
  24. */
  25. #include <stdint.h>
  26. #include <ipxe/md5.h>
  27. #include <ipxe/test.h>
  28. #include "digest_test.h"
  29. /** An MD5 test vector */
  30. struct md5_test_vector {
  31. /** Test data */
  32. void *data;
  33. /** Test data length */
  34. size_t len;
  35. /** Expected digest */
  36. uint8_t digest[MD5_DIGEST_SIZE];
  37. };
  38. /** MD5 test vectors */
  39. static struct md5_test_vector md5_test_vectors[] = {
  40. /* Test inputs borrowed from SHA-1 tests, with results
  41. * calculated using md5sum.
  42. */
  43. { NULL, 0,
  44. { 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
  45. 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e } },
  46. { "abc", 3,
  47. { 0x90, 0x01, 0x50, 0x98, 0x3c, 0xd2, 0x4f, 0xb0,
  48. 0xd6, 0x96, 0x3f, 0x7d, 0x28, 0xe1, 0x7f, 0x72 } },
  49. { "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 56,
  50. { 0x82, 0x15, 0xef, 0x07, 0x96, 0xa2, 0x0b, 0xca,
  51. 0xaa, 0xe1, 0x16, 0xd3, 0x87, 0x6c, 0x66, 0x4a } },
  52. };
  53. /** MD5 test fragment lists */
  54. static struct digest_test_fragments md5_test_fragments[] = {
  55. { { 0, -1UL, } },
  56. { { 1, 1, 1, 1, 1, 1, 1, 1 } },
  57. { { 2, 0, 23, 4, 6, 1, 0 } },
  58. };
  59. /**
  60. * Perform MD5 self-test
  61. *
  62. */
  63. static void md5_test_exec ( void ) {
  64. struct digest_algorithm *digest = &md5_algorithm;
  65. struct md5_test_vector *test;
  66. unsigned long cost;
  67. unsigned int i;
  68. unsigned int j;
  69. /* Correctness test */
  70. for ( i = 0 ; i < ( sizeof ( md5_test_vectors ) /
  71. sizeof ( md5_test_vectors[0] ) ) ; i++ ) {
  72. test = &md5_test_vectors[i];
  73. /* Test with a single pass */
  74. digest_ok ( digest, NULL, test->data, test->len, test->digest );
  75. /* Test with fragment lists */
  76. for ( j = 0 ; j < ( sizeof ( md5_test_fragments ) /
  77. sizeof ( md5_test_fragments[0] ) ) ; j++ ){
  78. digest_ok ( digest, &md5_test_fragments[j],
  79. test->data, test->len, test->digest );
  80. }
  81. }
  82. /* Speed test */
  83. cost = digest_cost ( digest );
  84. DBG ( "MD5 required %ld cycles per byte\n", cost );
  85. }
  86. /** MD5 self-test */
  87. struct self_test md5_test __self_test = {
  88. .name = "md5",
  89. .exec = md5_test_exec,
  90. };