(root)/
libxcrypt-4.4.36/
test/
alg-sha512.c
       1  #include "crypt-port.h"
       2  #include "alg-sha512.h"
       3  
       4  #include <stdio.h>
       5  
       6  #if INCLUDE_sha512crypt
       7  
       8  static const struct
       9  {
      10    const char *input;
      11    const char result[64];
      12  } tests[] =
      13  {
      14    /* Test vectors from FIPS 180-2: appendix C.1.  */
      15    {
      16      "abc",
      17      "\xdd\xaf\x35\xa1\x93\x61\x7a\xba\xcc\x41\x73\x49\xae\x20\x41\x31"
      18      "\x12\xe6\xfa\x4e\x89\xa9\x7e\xa2\x0a\x9e\xee\xe6\x4b\x55\xd3\x9a"
      19      "\x21\x92\x99\x2a\x27\x4f\xc1\xa8\x36\xba\x3c\x23\xa3\xfe\xeb\xbd"
      20      "\x45\x4d\x44\x23\x64\x3c\xe8\x0e\x2a\x9a\xc9\x4f\xa5\x4c\xa4\x9f"
      21    },
      22    /* Test vectors from FIPS 180-2: appendix C.2.  */
      23    {
      24      "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
      25      "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
      26      "\x8e\x95\x9b\x75\xda\xe3\x13\xda\x8c\xf4\xf7\x28\x14\xfc\x14\x3f"
      27      "\x8f\x77\x79\xc6\xeb\x9f\x7f\xa1\x72\x99\xae\xad\xb6\x88\x90\x18"
      28      "\x50\x1d\x28\x9e\x49\x00\xf7\xe4\x33\x1b\x99\xde\xc4\xb5\x43\x3a"
      29      "\xc7\xd3\x29\xee\xb6\xdd\x26\x54\x5e\x96\xe5\x5b\x87\x4b\xe9\x09"
      30    },
      31    /* Test vectors from the NESSIE project.  */
      32    {
      33      "",
      34      "\xcf\x83\xe1\x35\x7e\xef\xb8\xbd\xf1\x54\x28\x50\xd6\x6d\x80\x07"
      35      "\xd6\x20\xe4\x05\x0b\x57\x15\xdc\x83\xf4\xa9\x21\xd3\x6c\xe9\xce"
      36      "\x47\xd0\xd1\x3c\x5d\x85\xf2\xb0\xff\x83\x18\xd2\x87\x7e\xec\x2f"
      37      "\x63\xb9\x31\xbd\x47\x41\x7a\x81\xa5\x38\x32\x7a\xf9\x27\xda\x3e"
      38    },
      39    {
      40      "a",
      41      "\x1f\x40\xfc\x92\xda\x24\x16\x94\x75\x09\x79\xee\x6c\xf5\x82\xf2"
      42      "\xd5\xd7\xd2\x8e\x18\x33\x5d\xe0\x5a\xbc\x54\xd0\x56\x0e\x0f\x53"
      43      "\x02\x86\x0c\x65\x2b\xf0\x8d\x56\x02\x52\xaa\x5e\x74\x21\x05\x46"
      44      "\xf3\x69\xfb\xbb\xce\x8c\x12\xcf\xc7\x95\x7b\x26\x52\xfe\x9a\x75"
      45    },
      46    {
      47      "message digest",
      48      "\x10\x7d\xbf\x38\x9d\x9e\x9f\x71\xa3\xa9\x5f\x6c\x05\x5b\x92\x51"
      49      "\xbc\x52\x68\xc2\xbe\x16\xd6\xc1\x34\x92\xea\x45\xb0\x19\x9f\x33"
      50      "\x09\xe1\x64\x55\xab\x1e\x96\x11\x8e\x8a\x90\x5d\x55\x97\xb7\x20"
      51      "\x38\xdd\xb3\x72\xa8\x98\x26\x04\x6d\xe6\x66\x87\xbb\x42\x0e\x7c"
      52    },
      53    {
      54      "abcdefghijklmnopqrstuvwxyz",
      55      "\x4d\xbf\xf8\x6c\xc2\xca\x1b\xae\x1e\x16\x46\x8a\x05\xcb\x98\x81"
      56      "\xc9\x7f\x17\x53\xbc\xe3\x61\x90\x34\x89\x8f\xaa\x1a\xab\xe4\x29"
      57      "\x95\x5a\x1b\xf8\xec\x48\x3d\x74\x21\xfe\x3c\x16\x46\x61\x3a\x59"
      58      "\xed\x54\x41\xfb\x0f\x32\x13\x89\xf7\x7f\x48\xa8\x79\xc7\xb1\xf1"
      59    },
      60    {
      61      "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
      62      "\x20\x4a\x8f\xc6\xdd\xa8\x2f\x0a\x0c\xed\x7b\xeb\x8e\x08\xa4\x16"
      63      "\x57\xc1\x6e\xf4\x68\xb2\x28\xa8\x27\x9b\xe3\x31\xa7\x03\xc3\x35"
      64      "\x96\xfd\x15\xc1\x3b\x1b\x07\xf9\xaa\x1d\x3b\xea\x57\x78\x9c\xa0"
      65      "\x31\xad\x85\xc7\xa7\x1d\xd7\x03\x54\xec\x63\x12\x38\xca\x34\x45"
      66    },
      67    {
      68      "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
      69      "\x1e\x07\xbe\x23\xc2\x6a\x86\xea\x37\xea\x81\x0c\x8e\xc7\x80\x93"
      70      "\x52\x51\x5a\x97\x0e\x92\x53\xc2\x6f\x53\x6c\xfc\x7a\x99\x96\xc4"
      71      "\x5c\x83\x70\x58\x3e\x0a\x78\xfa\x4a\x90\x04\x1d\x71\xa4\xce\xab"
      72      "\x74\x23\xf1\x9c\x71\xb9\xd5\xa3\xe0\x12\x49\xf0\xbe\xbd\x58\x94"
      73    },
      74    {
      75      "123456789012345678901234567890123456789012345678901234567890"
      76      "12345678901234567890",
      77      "\x72\xec\x1e\xf1\x12\x4a\x45\xb0\x47\xe8\xb7\xc7\x5a\x93\x21\x95"
      78      "\x13\x5b\xb6\x1d\xe2\x4e\xc0\xd1\x91\x40\x42\x24\x6e\x0a\xec\x3a"
      79      "\x23\x54\xe0\x93\xd7\x6f\x30\x48\xb4\x56\x76\x43\x46\x90\x0c\xb1"
      80      "\x30\xd2\xa4\xfd\x5d\xd1\x6a\xbb\x5e\x30\xbc\xb8\x50\xde\xe8\x43"
      81    }
      82  };
      83  
      84  
      85  static void
      86  report_failure(int n, const char *tag,
      87                 const char expected[64], const uint8_t actual[64])
      88  {
      89    int i;
      90    printf ("FAIL: test %d (%s):\n  exp:", n, tag);
      91    for (i = 0; i < 64; i++)
      92      {
      93        if (i == 32)
      94          printf ("\n         ");
      95        else if (i % 4 == 0)
      96          putchar (' ');
      97        printf ("%02x", (unsigned int)(unsigned char)expected[i]);
      98      }
      99    printf ("\n  got:");
     100    for (i = 0; i < 64; i++)
     101      {
     102        if (i == 32)
     103          printf ("\n         ");
     104        else if (i % 4 == 0)
     105          putchar (' ');
     106        printf ("%02x", (unsigned int)(unsigned char)actual[i]);
     107      }
     108    putchar ('\n');
     109    putchar ('\n');
     110  }
     111  
     112  int
     113  main (void)
     114  {
     115    SHA512_CTX ctx;
     116    uint8_t sum[64];
     117    int result = 0;
     118    int cnt;
     119    int i;
     120  
     121    for (cnt = 0; cnt < (int) ARRAY_SIZE (tests); ++cnt)
     122      {
     123        SHA512_Buf (tests[cnt].input, strlen (tests[cnt].input), sum);
     124        if (memcmp (tests[cnt].result, sum, 64) != 0)
     125          {
     126            report_failure (cnt, "all at once", tests[cnt].result, sum);
     127            result = 1;
     128          }
     129  
     130        SHA512_Init (&ctx);
     131        for (i = 0; tests[cnt].input[i] != '\0'; ++i)
     132          SHA512_Update (&ctx, &tests[cnt].input[i], 1);
     133        SHA512_Final (sum, &ctx);
     134        if (memcmp (tests[cnt].result, sum, 64) != 0)
     135          {
     136            report_failure (cnt, "byte by byte", tests[cnt].result, sum);
     137            result = 1;
     138          }
     139      }
     140  
     141    /* Test vector from FIPS 180-2: appendix C.3.  */
     142    char buf[1000];
     143    memset (buf, 'a', sizeof (buf));
     144    SHA512_Init (&ctx);
     145    for (i = 0; i < 1000; ++i)
     146      SHA512_Update (&ctx, buf, sizeof (buf));
     147    SHA512_Final (sum, &ctx);
     148    static const char expected[64] =
     149      "\xe7\x18\x48\x3d\x0c\xe7\x69\x64\x4e\x2e\x42\xc7\xbc\x15\xb4\x63"
     150      "\x8e\x1f\x98\xb1\x3b\x20\x44\x28\x56\x32\xa8\x03\xaf\xa9\x73\xeb"
     151      "\xde\x0f\xf2\x44\x87\x7e\xa6\x0a\x4c\xb0\x43\x2c\xe5\x77\xc3\x1b"
     152      "\xeb\x00\x9c\x5c\x2c\x49\xaa\x2e\x4e\xad\xb2\x17\xad\x8c\xc0\x9b";
     153    if (memcmp (expected, sum, 64) != 0)
     154      {
     155        report_failure (cnt, "block by block", expected, sum);
     156        result = 1;
     157      }
     158  
     159    return result;
     160  }
     161  
     162  #else
     163  
     164  int
     165  main (void)
     166  {
     167    return 77; /* UNSUPPORTED */
     168  }
     169  
     170  #endif