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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. * SHA-1 tests
  22. *
  23. */
  24. #include <stdint.h>
  25. #include <ipxe/sha1.h>
  26. #include <ipxe/test.h>
  27. #include "digest_test.h"
  28. /** An SHA-1 test vector */
  29. struct sha1_test_vector {
  30. /** Test data */
  31. void *data;
  32. /** Test data length */
  33. size_t len;
  34. /** Expected digest */
  35. uint8_t digest[SHA1_DIGEST_SIZE];
  36. };
  37. /** SHA-1 test vectors */
  38. static struct sha1_test_vector sha1_test_vectors[] = {
  39. /* Empty test data
  40. *
  41. * Expected digest value obtained from "sha1sum /dev/null"
  42. */
  43. { NULL, 0,
  44. { 0xda, 0x39, 0xa3, 0xee, 0x5e, 0x6b, 0x4b, 0x0d, 0x32, 0x55,
  45. 0xbf, 0xef, 0x95, 0x60, 0x18, 0x90, 0xaf, 0xd8, 0x07, 0x09 } },
  46. /* Test data and expected digests taken from the NIST
  47. * Cryptographic Toolkit Algorithm Examples at
  48. * http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/SHA1.pdf
  49. */
  50. { "abc", 3,
  51. { 0xa9, 0x99, 0x3e, 0x36, 0x47, 0x06, 0x81, 0x6a, 0xba, 0x3e,
  52. 0x25, 0x71, 0x78, 0x50, 0xc2, 0x6c, 0x9c, 0xd0, 0xd8, 0x9d } },
  53. { "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 56,
  54. { 0x84, 0x98, 0x3e, 0x44, 0x1c, 0x3b, 0xd2, 0x6e, 0xba, 0xae,
  55. 0x4a, 0xa1, 0xf9, 0x51, 0x29, 0xe5, 0xe5, 0x46, 0x70, 0xf1 } },
  56. };
  57. /** SHA-1 test fragment lists */
  58. static struct digest_test_fragments sha1_test_fragments[] = {
  59. { { 0, -1UL, } },
  60. { { 1, 1, 1, 1, 1, 1, 1, 1 } },
  61. { { 2, 0, 23, 4, 6, 1, 0 } },
  62. };
  63. /**
  64. * Perform SHA-1 self-test
  65. *
  66. */
  67. static void sha1_test_exec ( void ) {
  68. struct digest_algorithm *digest = &sha1_algorithm;
  69. struct sha1_test_vector *test;
  70. unsigned int i;
  71. unsigned int j;
  72. for ( i = 0 ; i < ( sizeof ( sha1_test_vectors ) /
  73. sizeof ( sha1_test_vectors[0] ) ) ; i++ ) {
  74. test = &sha1_test_vectors[i];
  75. /* Test with a single pass */
  76. digest_ok ( digest, NULL, test->data, test->len, test->digest );
  77. /* Test with fragment lists */
  78. for ( j = 0 ; j < ( sizeof ( sha1_test_fragments ) /
  79. sizeof ( sha1_test_fragments[0] ) ) ; j++ ){
  80. digest_ok ( digest, &sha1_test_fragments[j],
  81. test->data, test->len, test->digest );
  82. }
  83. }
  84. }
  85. /** SHA-1 self-test */
  86. struct self_test sha1_test __self_test = {
  87. .name = "sha1",
  88. .exec = sha1_test_exec,
  89. };