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.

sha1_test.c 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. * SHA-1 tests
  27. *
  28. * NIST test vectors are taken from
  29. *
  30. * http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/SHA1.pdf
  31. *
  32. */
  33. /* Forcibly enable assertions */
  34. #undef NDEBUG
  35. #include <ipxe/sha1.h>
  36. #include <ipxe/test.h>
  37. #include "digest_test.h"
  38. /* Empty test vector (digest obtained from "sha1sum /dev/null") */
  39. DIGEST_TEST ( sha1_empty, &sha1_algorithm, DIGEST_EMPTY,
  40. DIGEST ( 0xda, 0x39, 0xa3, 0xee, 0x5e, 0x6b, 0x4b, 0x0d, 0x32,
  41. 0x55, 0xbf, 0xef, 0x95, 0x60, 0x18, 0x90, 0xaf, 0xd8,
  42. 0x07, 0x09 ) );
  43. /* NIST test vector "abc" */
  44. DIGEST_TEST ( sha1_nist_abc, &sha1_algorithm, DIGEST_NIST_ABC,
  45. DIGEST ( 0xa9, 0x99, 0x3e, 0x36, 0x47, 0x06, 0x81, 0x6a, 0xba,
  46. 0x3e, 0x25, 0x71, 0x78, 0x50, 0xc2, 0x6c, 0x9c, 0xd0,
  47. 0xd8, 0x9d ) );
  48. /* NIST test vector "abc...opq" */
  49. DIGEST_TEST ( sha1_nist_abc_opq, &sha1_algorithm, DIGEST_NIST_ABC_OPQ,
  50. DIGEST ( 0x84, 0x98, 0x3e, 0x44, 0x1c, 0x3b, 0xd2, 0x6e, 0xba,
  51. 0xae, 0x4a, 0xa1, 0xf9, 0x51, 0x29, 0xe5, 0xe5, 0x46,
  52. 0x70, 0xf1 ) );
  53. /**
  54. * Perform SHA-1 self-test
  55. *
  56. */
  57. static void sha1_test_exec ( void ) {
  58. /* Correctness tests */
  59. digest_ok ( &sha1_empty );
  60. digest_ok ( &sha1_nist_abc );
  61. digest_ok ( &sha1_nist_abc_opq );
  62. /* Speed tests */
  63. DBG ( "SHA1 required %ld cycles per byte\n",
  64. digest_cost ( &sha1_algorithm ) );
  65. }
  66. /** SHA-1 self-test */
  67. struct self_test sha1_test __self_test = {
  68. .name = "sha1",
  69. .exec = sha1_test_exec,
  70. };