root/maint/gnulib/tests/test-gc-arctwo.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

   1 /*
   2  * Copyright (C) 2005, 2010-2021 Free Software Foundation, Inc.
   3  * Written by Simon Josefsson
   4  *
   5  * This program is free software; you can redistribute it and/or modify
   6  * it under the terms of the GNU General Public License as published by
   7  * the Free Software Foundation; either version 3, or (at your option)
   8  * any later version.
   9  *
  10  * This program is distributed in the hope that it will be useful,
  11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13  * GNU General Public License for more details.
  14  *
  15  * You should have received a copy of the GNU General Public License
  16  * along with this program; if not, see <https://www.gnu.org/licenses/>.  */
  17 
  18 #include <config.h>
  19 
  20 #include "gc.h"
  21 
  22 #include <stdio.h>
  23 #include <string.h>
  24 
  25 int
  26 main (int argc, char *argv[])
     /* [previous][next][first][last][top][bottom][index][help] */
  27 {
  28   gc_cipher_handle ctx;
  29   /* Test vectors from RFC 2268. */
  30   static char key[8] = "\xff\xff\xff\xff\xff\xff\xff\xff";
  31   static char plaintext[8] = "\xff\xff\xff\xff\xff\xff\xff\xff";
  32   static const char ciphertext[8] = "\x27\x8b\x27\xe4\x2e\x2f\x0d\x49";
  33   char scratch[16];
  34   Gc_rc rc;
  35 
  36   rc = gc_init ();
  37   if (rc != GC_OK)
  38     {
  39       printf ("gc_init() failed\n");
  40       return 1;
  41     }
  42 
  43   rc = gc_cipher_open (GC_ARCTWO40, GC_ECB, &ctx);
  44   if (rc != GC_OK)
  45     return 1;
  46 
  47   rc = gc_cipher_setkey (ctx, sizeof (key), key);
  48   if (rc != GC_OK)
  49     return 1;
  50 
  51   memcpy (scratch, plaintext, sizeof (plaintext));
  52   rc = gc_cipher_encrypt_inline (ctx, sizeof (plaintext), scratch);
  53   if (rc != GC_OK)
  54     return 1;
  55 
  56   if (memcmp (scratch, ciphertext, sizeof (ciphertext)))
  57     {
  58       size_t i;
  59       printf ("expected:\n");
  60       for (i = 0; i < 5; i++)
  61         printf ("%02x ", scratch[i] & 0xFF);
  62       printf ("\ncomputed:\n");
  63       for (i = 0; i < 5; i++)
  64         printf ("%02x ", ciphertext[i] & 0xFF);
  65       printf ("\n");
  66       return 1;
  67     }
  68 
  69   /* decrypt */
  70 
  71   rc = gc_cipher_setkey (ctx, sizeof (key), key);
  72   if (rc != GC_OK)
  73     return 1;
  74 
  75   rc = gc_cipher_decrypt_inline (ctx, sizeof (plaintext), scratch);
  76   if (rc != GC_OK)
  77     return 1;
  78 
  79   if (memcmp (scratch, plaintext, sizeof (plaintext)))
  80     {
  81       size_t i;
  82       printf ("expected:\n");
  83       for (i = 0; i < 5; i++)
  84         printf ("%02x ", plaintext[i] & 0xFF);
  85       printf ("\ncomputed:\n");
  86       for (i = 0; i < 5; i++)
  87         printf ("%02x ", scratch[i] & 0xFF);
  88       printf ("\n");
  89       return 1;
  90     }
  91 
  92   gc_cipher_close (ctx);
  93 
  94   gc_done ();
  95 
  96   return 0;
  97 }

/* [previous][next][first][last][top][bottom][index][help] */