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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. * You can also choose to distribute this program under the terms of
  20. * the Unmodified Binary Distribution Licence (as given in the file
  21. * COPYING.UBDL), provided that you have satisfied its requirements.
  22. */
  23. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  24. /** @file
  25. *
  26. * MD5 tests
  27. *
  28. * Test inputs borrowed from NIST SHA-1 tests, with results calculated
  29. * using md5sum.
  30. */
  31. /* Forcibly enable assertions */
  32. #undef NDEBUG
  33. #include <ipxe/md5.h>
  34. #include <ipxe/test.h>
  35. #include "digest_test.h"
  36. /* Empty test vector (digest obtained from "md5sum /dev/null") */
  37. DIGEST_TEST ( md5_empty, &md5_algorithm, DIGEST_EMPTY,
  38. DIGEST ( 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04, 0xe9,
  39. 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e ) );
  40. /* NIST test vector "abc" (digest obtained from "md5sum <data>") */
  41. DIGEST_TEST ( md5_nist_abc, &md5_algorithm, DIGEST_NIST_ABC,
  42. DIGEST ( 0x90, 0x01, 0x50, 0x98, 0x3c, 0xd2, 0x4f, 0xb0, 0xd6,
  43. 0x96, 0x3f, 0x7d, 0x28, 0xe1, 0x7f, 0x72 ) );
  44. /* NIST test vector "abc...opq" (digest obtained from "md5sum <data>") */
  45. DIGEST_TEST ( md5_nist_abc_opq, &md5_algorithm, DIGEST_NIST_ABC_OPQ,
  46. DIGEST ( 0x82, 0x15, 0xef, 0x07, 0x96, 0xa2, 0x0b, 0xca, 0xaa,
  47. 0xe1, 0x16, 0xd3, 0x87, 0x6c, 0x66, 0x4a ) );
  48. /**
  49. * Perform MD5 self-test
  50. *
  51. */
  52. static void md5_test_exec ( void ) {
  53. /* Correctness tests */
  54. digest_ok ( &md5_empty );
  55. digest_ok ( &md5_nist_abc );
  56. digest_ok ( &md5_nist_abc_opq );
  57. /* Speed tests */
  58. DBG ( "MD5 required %ld cycles per byte\n",
  59. digest_cost ( &md5_algorithm ) );
  60. }
  61. /** MD5 self-test */
  62. struct self_test md5_test __self_test = {
  63. .name = "md5",
  64. .exec = md5_test_exec,
  65. };