LCOV - code coverage report
Current view: top level - egg - test-hkdf.c (source / functions) Hit Total Coverage
Test: Code coverage Lines: 102 103 99.0 %
Date: 2024-02-08 14:44:34 Functions: 8 10 80.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 48 96 50.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
       2                 :            : /* test-hkdf.c: Test egg-hkdf.c
       3                 :            : 
       4                 :            :    Copyright (C) 2011 Collabora Ltd.
       5                 :            : 
       6                 :            :    The Gnome Keyring Library is free software; you can redistribute it and/or
       7                 :            :    modify it under the terms of the GNU Library General Public License as
       8                 :            :    published by the Free Software Foundation; either version 2 of the
       9                 :            :    License, or (at your option) any later version.
      10                 :            : 
      11                 :            :    The Gnome Keyring Library is distributed in the hope that it will be useful,
      12                 :            :    but WITHOUT ANY WARRANTY; without even the implied warranty of
      13                 :            :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      14                 :            :    Library General Public License for more details.
      15                 :            : 
      16                 :            :    You should have received a copy of the GNU Library General Public
      17                 :            :    License along with the Gnome Library; see the file COPYING.LIB.  If not,
      18                 :            :    see <http://www.gnu.org/licenses/>.
      19                 :            : 
      20                 :            :    Author: Stef Walter <stef@collabora.co.uk>
      21                 :            : */
      22                 :            : 
      23                 :            : #include "config.h"
      24                 :            : 
      25                 :            : #undef G_DISABLE_ASSERT
      26                 :            : 
      27                 :            : #include <stdlib.h>
      28                 :            : #include <stdio.h>
      29                 :            : #include <string.h>
      30                 :            : 
      31                 :            : #include "egg/egg-hkdf.h"
      32                 :            : #include "egg/egg-secure-memory.h"
      33                 :            : #include "egg/egg-testing.h"
      34                 :            : 
      35                 :            : #undef G_DISABLE_ASSERT
      36                 :            : 
      37                 :          0 : EGG_SECURE_DEFINE_GLIB_GLOBALS ();
      38                 :            : 
      39                 :            : static void
      40                 :          1 : test_hkdf_test_case_1 (void)
      41                 :            : {
      42                 :            :         /* RFC 5869: A.1 Test Case 1 */
      43                 :          1 :         const guchar ikm[] = { 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
      44                 :            :                                0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
      45                 :            :                                0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b };
      46                 :          1 :         const guchar salt[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
      47                 :            :                                 0x08, 0x09, 0x0a, 0x0b, 0x0c };
      48                 :          1 :         const guchar info[] = { 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
      49                 :            :                                 0xf8, 0xf9 };
      50                 :          1 :         const guchar okm[] = { 0x3c, 0xb2, 0x5f, 0x25, 0xfa, 0xac, 0xd5, 0x7a,
      51                 :            :                                0x90, 0x43, 0x4f, 0x64, 0xd0, 0x36, 0x2f, 0x2a,
      52                 :            :                                0x2d, 0x2d, 0x0a, 0x90, 0xcf, 0x1a, 0x5a, 0x4c,
      53                 :            :                                0x5d, 0xb0, 0x2d, 0x56, 0xec, 0xc4, 0xc5, 0xbf,
      54                 :            :                                0x34, 0x00, 0x72, 0x08, 0xd5, 0xb8, 0x87, 0x18,
      55                 :            :                                0x58, 0x65 };
      56                 :            :         guchar buffer[sizeof (okm)];
      57                 :            :         gboolean ret;
      58                 :            : 
      59         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (ikm), ==, 22);
      60         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (salt), ==, 13);
      61         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (info), ==, 10);
      62         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (okm), ==, 42);
      63                 :            : 
      64                 :          1 :         memset (buffer, 0, sizeof (buffer));
      65                 :          1 :         ret = egg_hkdf_perform ("sha256",
      66                 :            :                                 ikm, sizeof (ikm),
      67                 :            :                                 salt, sizeof (salt),
      68                 :            :                                 info, sizeof (info),
      69                 :            :                                 buffer, sizeof (buffer));
      70         [ -  + ]:          1 :         g_assert_true (ret);
      71   [ +  -  +  - ]:          1 :         egg_assert_cmpmem (buffer, sizeof (buffer), ==, okm, sizeof (okm));
      72                 :          1 : }
      73                 :            : 
      74                 :            : static void
      75                 :          1 : test_hkdf_test_case_2 (void)
      76                 :            : {
      77                 :            :         /* RFC 5869: A.2 Test Case 2 */
      78                 :          1 :         const guchar ikm[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
      79                 :            :                                0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
      80                 :            :                                0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
      81                 :            :                                0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
      82                 :            :                                0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
      83                 :            :                                0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
      84                 :            :                                0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
      85                 :            :                                0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
      86                 :            :                                0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
      87                 :            :                                0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f };
      88                 :          1 :         const guchar salt[] = { 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
      89                 :            :                                 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
      90                 :            :                                 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
      91                 :            :                                 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,
      92                 :            :                                 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
      93                 :            :                                 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
      94                 :            :                                 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
      95                 :            :                                 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
      96                 :            :                                 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,
      97                 :            :                                 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf };
      98                 :          1 :         const guchar info[] = { 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,
      99                 :            :                                 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,
     100                 :            :                                 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
     101                 :            :                                 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,
     102                 :            :                                 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7,
     103                 :            :                                 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
     104                 :            :                                 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7,
     105                 :            :                                 0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
     106                 :            :                                 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
     107                 :            :                                 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff };
     108                 :          1 :         const guchar okm[] = { 0xb1, 0x1e, 0x39, 0x8d, 0xc8, 0x03, 0x27, 0xa1,
     109                 :            :                                0xc8, 0xe7, 0xf7, 0x8c, 0x59, 0x6a, 0x49, 0x34,
     110                 :            :                                0x4f, 0x01, 0x2e, 0xda, 0x2d, 0x4e, 0xfa, 0xd8,
     111                 :            :                                0xa0, 0x50, 0xcc, 0x4c, 0x19, 0xaf, 0xa9, 0x7c,
     112                 :            :                                0x59, 0x04, 0x5a, 0x99, 0xca, 0xc7, 0x82, 0x72,
     113                 :            :                                0x71, 0xcb, 0x41, 0xc6, 0x5e, 0x59, 0x0e, 0x09,
     114                 :            :                                0xda, 0x32, 0x75, 0x60, 0x0c, 0x2f, 0x09, 0xb8,
     115                 :            :                                0x36, 0x77, 0x93, 0xa9, 0xac, 0xa3, 0xdb, 0x71,
     116                 :            :                                0xcc, 0x30, 0xc5, 0x81, 0x79, 0xec, 0x3e, 0x87,
     117                 :            :                                0xc1, 0x4c, 0x01, 0xd5, 0xc1, 0xf3, 0x43, 0x4f,
     118                 :            :                                0x1d, 0x87 };
     119                 :            :         guchar buffer[sizeof (okm)];
     120                 :            :         gboolean ret;
     121                 :            : 
     122         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (ikm), ==, 80);
     123         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (salt), ==, 80);
     124         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (info), ==, 80);
     125         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (okm), ==, 82);
     126                 :            : 
     127                 :          1 :         memset (buffer, 0, sizeof (buffer));
     128                 :          1 :         ret = egg_hkdf_perform ("sha256",
     129                 :            :                                 ikm, sizeof (ikm),
     130                 :            :                                 salt, sizeof (salt),
     131                 :            :                                 info, sizeof (info),
     132                 :            :                                 buffer, sizeof (buffer));
     133         [ -  + ]:          1 :         g_assert_true (ret);
     134   [ +  -  +  - ]:          1 :         egg_assert_cmpmem (buffer, sizeof (buffer), ==, okm, sizeof (okm));
     135                 :          1 : }
     136                 :            : 
     137                 :            : static void
     138                 :          1 : test_hkdf_test_case_3 (void)
     139                 :            : {
     140                 :            :         /* RFC 5869: A.3 Test Case 3 */
     141                 :          1 :         const guchar ikm[] = { 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
     142                 :            :                                0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
     143                 :            :                                0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,};
     144                 :            :         const guchar salt[] = { };
     145                 :            :         const guchar info[] = { };
     146                 :          1 :         const guchar okm[] = { 0x8d, 0xa4, 0xe7, 0x75, 0xa5, 0x63, 0xc1, 0x8f,
     147                 :            :                                0x71, 0x5f, 0x80, 0x2a, 0x06, 0x3c, 0x5a, 0x31,
     148                 :            :                                0xb8, 0xa1, 0x1f, 0x5c, 0x5e, 0xe1, 0x87, 0x9e,
     149                 :            :                                0xc3, 0x45, 0x4e, 0x5f, 0x3c, 0x73, 0x8d, 0x2d,
     150                 :            :                                0x9d, 0x20, 0x13, 0x95, 0xfa, 0xa4, 0xb6, 0x1a,
     151                 :            :                                0x96, 0xc8 };
     152                 :            :         guchar buffer[sizeof (okm)];
     153                 :            :         gboolean ret;
     154                 :            : 
     155         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (ikm), ==, 22);
     156         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (salt), ==, 0);
     157         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (info), ==, 0);
     158         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (okm), ==, 42);
     159                 :            : 
     160                 :          1 :         memset (buffer, 0, sizeof (buffer));
     161                 :          1 :         ret = egg_hkdf_perform ("sha256",
     162                 :            :                                 ikm, sizeof (ikm),
     163                 :            :                                 salt, sizeof (salt),
     164                 :            :                                 info, sizeof (info),
     165                 :            :                                 buffer, sizeof (buffer));
     166         [ -  + ]:          1 :         g_assert_true (ret);
     167   [ +  -  +  - ]:          1 :         egg_assert_cmpmem (buffer, sizeof (buffer), ==, okm, sizeof (okm));
     168                 :          1 : }
     169                 :            : 
     170                 :            : static void
     171                 :          1 : test_hkdf_test_case_4 (void)
     172                 :            : {
     173                 :            :         /* RFC 5869: A.4 Test Case 4 */
     174                 :          1 :         const guchar ikm[] = { 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
     175                 :            :                                0x0b, 0x0b, 0x0b };
     176                 :          1 :         const guchar salt[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
     177                 :            :                                 0x08, 0x09, 0x0a, 0x0b, 0x0c };
     178                 :          1 :         const guchar info[] = { 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
     179                 :            :                                 0xf8, 0xf9 };
     180                 :          1 :         const guchar okm[] = { 0x08, 0x5a, 0x01, 0xea, 0x1b, 0x10, 0xf3, 0x69,
     181                 :            :                                0x33, 0x06, 0x8b, 0x56, 0xef, 0xa5, 0xad, 0x81,
     182                 :            :                                0xa4, 0xf1, 0x4b, 0x82, 0x2f, 0x5b, 0x09, 0x15,
     183                 :            :                                0x68, 0xa9, 0xcd, 0xd4, 0xf1, 0x55, 0xfd, 0xa2,
     184                 :            :                                0xc2, 0x2e, 0x42, 0x24, 0x78, 0xd3, 0x05, 0xf3,
     185                 :            :                                0xf8, 0x96 };
     186                 :            :         guchar buffer[sizeof (okm)];
     187                 :            :         gboolean ret;
     188                 :            : 
     189         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (ikm), ==, 11);
     190         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (salt), ==, 13);
     191         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (info), ==, 10);
     192         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (okm), ==, 42);
     193                 :            : 
     194                 :          1 :         memset (buffer, 0, sizeof (buffer));
     195                 :          1 :         ret = egg_hkdf_perform ("sha1",
     196                 :            :                                 ikm, sizeof (ikm),
     197                 :            :                                 salt, sizeof (salt),
     198                 :            :                                 info, sizeof (info),
     199                 :            :                                 buffer, sizeof (buffer));
     200         [ -  + ]:          1 :         g_assert_true (ret);
     201   [ +  -  +  - ]:          1 :         egg_assert_cmpmem (buffer, sizeof (buffer), ==, okm, sizeof (okm));
     202                 :          1 : }
     203                 :            : 
     204                 :            : static void
     205                 :          1 : test_hkdf_test_case_5 (void)
     206                 :            : {
     207                 :            :         /* RFC 5869: A.5 Test Case 5 */
     208                 :          1 :         const guchar ikm[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
     209                 :            :                                0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
     210                 :            :                                0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
     211                 :            :                                0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
     212                 :            :                                0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
     213                 :            :                                0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
     214                 :            :                                0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
     215                 :            :                                0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
     216                 :            :                                0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
     217                 :            :                                0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f };
     218                 :          1 :         const guchar salt[] = { 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
     219                 :            :                                 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
     220                 :            :                                 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
     221                 :            :                                 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,
     222                 :            :                                 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
     223                 :            :                                 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
     224                 :            :                                 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
     225                 :            :                                 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
     226                 :            :                                 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,
     227                 :            :                                 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf };
     228                 :          1 :         const guchar info[] = { 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,
     229                 :            :                                 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,
     230                 :            :                                 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
     231                 :            :                                 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,
     232                 :            :                                 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7,
     233                 :            :                                 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
     234                 :            :                                 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7,
     235                 :            :                                 0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
     236                 :            :                                 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
     237                 :            :                                 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff };
     238                 :          1 :         const guchar okm[] = { 0x0b, 0xd7, 0x70, 0xa7, 0x4d, 0x11, 0x60, 0xf7,
     239                 :            :                                0xc9, 0xf1, 0x2c, 0xd5, 0x91, 0x2a, 0x06, 0xeb,
     240                 :            :                                0xff, 0x6a, 0xdc, 0xae, 0x89, 0x9d, 0x92, 0x19,
     241                 :            :                                0x1f, 0xe4, 0x30, 0x56, 0x73, 0xba, 0x2f, 0xfe,
     242                 :            :                                0x8f, 0xa3, 0xf1, 0xa4, 0xe5, 0xad, 0x79, 0xf3,
     243                 :            :                                0xf3, 0x34, 0xb3, 0xb2, 0x02, 0xb2, 0x17, 0x3c,
     244                 :            :                                0x48, 0x6e, 0xa3, 0x7c, 0xe3, 0xd3, 0x97, 0xed,
     245                 :            :                                0x03, 0x4c, 0x7f, 0x9d, 0xfe, 0xb1, 0x5c, 0x5e,
     246                 :            :                                0x92, 0x73, 0x36, 0xd0, 0x44, 0x1f, 0x4c, 0x43,
     247                 :            :                                0x00, 0xe2, 0xcf, 0xf0, 0xd0, 0x90, 0x0b, 0x52,
     248                 :            :                                0xd3, 0xb4 };
     249                 :            :         guchar buffer[sizeof (okm)];
     250                 :            :         gboolean ret;
     251                 :            : 
     252         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (ikm), ==, 80);
     253         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (salt), ==, 80);
     254         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (info), ==, 80);
     255         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (okm), ==, 82);
     256                 :            : 
     257                 :          1 :         memset (buffer, 0, sizeof (buffer));
     258                 :          1 :         ret = egg_hkdf_perform ("sha1",
     259                 :            :                                 ikm, sizeof (ikm),
     260                 :            :                                 salt, sizeof (salt),
     261                 :            :                                 info, sizeof (info),
     262                 :            :                                 buffer, sizeof (buffer));
     263         [ -  + ]:          1 :         g_assert_true (ret);
     264   [ +  -  +  - ]:          1 :         egg_assert_cmpmem (buffer, sizeof (buffer), ==, okm, sizeof (okm));
     265                 :          1 : }
     266                 :            : 
     267                 :            : static void
     268                 :          1 : test_hkdf_test_case_6 (void)
     269                 :            : {
     270                 :            :         /* RFC 5869: A.6 Test Case 6 */
     271                 :          1 :         const guchar ikm[] = { 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
     272                 :            :                                0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
     273                 :            :                                0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b };
     274                 :            :         const guchar salt[] = { };
     275                 :            :         const guchar info[] = { };
     276                 :          1 :         const guchar okm[] = { 0x0a, 0xc1, 0xaf, 0x70, 0x02, 0xb3, 0xd7, 0x61,
     277                 :            :                                0xd1, 0xe5, 0x52, 0x98, 0xda, 0x9d, 0x05, 0x06,
     278                 :            :                                0xb9, 0xae, 0x52, 0x05, 0x72, 0x20, 0xa3, 0x06,
     279                 :            :                                0xe0, 0x7b, 0x6b, 0x87, 0xe8, 0xdf, 0x21, 0xd0,
     280                 :            :                                0xea, 0x00, 0x03, 0x3d, 0xe0, 0x39, 0x84, 0xd3,
     281                 :            :                                0x49, 0x18 };
     282                 :            :         guchar buffer[sizeof (okm)];
     283                 :            :         gboolean ret;
     284                 :            : 
     285         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (ikm), ==, 22);
     286         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (salt), ==, 0);
     287         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (info), ==, 0);
     288         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (okm), ==, 42);
     289                 :            : 
     290                 :          1 :         memset (buffer, 0, sizeof (buffer));
     291                 :          1 :         ret = egg_hkdf_perform ("sha1",
     292                 :            :                                 ikm, sizeof (ikm),
     293                 :            :                                 salt, sizeof (salt),
     294                 :            :                                 info, sizeof (info),
     295                 :            :                                 buffer, sizeof (buffer));
     296         [ -  + ]:          1 :         g_assert_true (ret);
     297   [ +  -  +  - ]:          1 :         egg_assert_cmpmem (buffer, sizeof (buffer), ==, okm, sizeof (okm));
     298                 :          1 : }
     299                 :            : 
     300                 :            : static void
     301                 :          1 : test_hkdf_test_case_7 (void)
     302                 :            : {
     303                 :            :         /* RFC 5869: A.7 Test Case 7 */
     304                 :          1 :         const guchar ikm[] = { 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c,
     305                 :            :                                0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c,
     306                 :            :                                0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c };
     307                 :          1 :         const guchar *salt = NULL;
     308                 :            :         const guchar info[] = { };
     309                 :          1 :         const guchar okm[] = { 0x2c, 0x91, 0x11, 0x72, 0x04, 0xd7, 0x45, 0xf3,
     310                 :            :                                0x50, 0x0d, 0x63, 0x6a, 0x62, 0xf6, 0x4f, 0x0a,
     311                 :            :                                0xb3, 0xba, 0xe5, 0x48, 0xaa, 0x53, 0xd4, 0x23,
     312                 :            :                                0xb0, 0xd1, 0xf2, 0x7e, 0xbb, 0xa6, 0xf5, 0xe5,
     313                 :            :                                0x67, 0x3a, 0x08, 0x1d, 0x70, 0xcc, 0xe7, 0xac,
     314                 :            :                                0xfc, 0x48 };
     315                 :            :         guchar buffer[sizeof (okm)];
     316                 :            :         gboolean ret;
     317                 :            : 
     318         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (ikm), ==, 22);
     319         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (info), ==, 0);
     320         [ -  + ]:          1 :         egg_assert_cmpsize (sizeof (okm), ==, 42);
     321                 :            : 
     322                 :          1 :         memset (buffer, 0, sizeof (buffer));
     323                 :          1 :         ret = egg_hkdf_perform ("sha1",
     324                 :            :                                 ikm, sizeof (ikm),
     325                 :            :                                 salt, sizeof (salt),
     326                 :            :                                 info, sizeof (info),
     327                 :            :                                 buffer, sizeof (buffer));
     328         [ -  + ]:          1 :         g_assert_true (ret);
     329   [ +  -  +  - ]:          1 :         egg_assert_cmpmem (buffer, sizeof (buffer), ==, okm, sizeof (okm));
     330                 :          1 : }
     331                 :            : 
     332                 :            : int
     333                 :          1 : main (int argc, char **argv)
     334                 :            : {
     335                 :          1 :         g_test_init (&argc, &argv, NULL);
     336                 :            : 
     337                 :          1 :         g_test_add_func ("/hkdf/test-case-1", test_hkdf_test_case_1);
     338                 :          1 :         g_test_add_func ("/hkdf/test-case-2", test_hkdf_test_case_2);
     339                 :          1 :         g_test_add_func ("/hkdf/test-case-3", test_hkdf_test_case_3);
     340                 :          1 :         g_test_add_func ("/hkdf/test-case-4", test_hkdf_test_case_4);
     341                 :          1 :         g_test_add_func ("/hkdf/test-case-5", test_hkdf_test_case_5);
     342                 :          1 :         g_test_add_func ("/hkdf/test-case-6", test_hkdf_test_case_6);
     343                 :          1 :         g_test_add_func ("/hkdf/test-case-7", test_hkdf_test_case_7);
     344                 :            : 
     345                 :          1 :         return g_test_run ();
     346                 :            : }

Generated by: LCOV version 1.14