~ubuntu-branches/ubuntu/intrepid/parted/intrepid

« back to all changes in this revision

Viewing changes to gnulib/tests/test-des.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-06-24 14:31:05 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080624143105-rd7yw67a9qnvh51i
Tags: 1.8.8.git.2008.03.24-7ubuntu1
* Resynchronise with Debian (LP: #237568). Remaining changes:
  - swap-uuid.dpatch: Create UUIDs on new swap partitions.
  - gptsync.dpatch: On Intel Mac systems, write a synced MBR rather than a
    protective MBR.
  - Add -fno-stack-protector on sparc.
  - sparc-new-label.dpatch: Fix sparc disk label generation. This is
    required for LDOM and parallel installations with Solaris 10.
  - loop-partitions.dpatch: Loop devices can only have one partition, so
    don't generate device names such as "/dev/loop0p1".
  - unpartitioned-disks.dpatch: Don't try to call BLKPG ioctls on
    unpartitionable disks (only implemented for loop devices at the
    moment), as they will always fail.
  - When building with gcc-4.3, add -Wno-array-bounds to CFLAGS.
  - Cell partition tables are misdetected as pc98, so disable pc98 support
    on powerpc.
  - array-bounds.dpatch: Backport patch from git to allow building with
    gcc-4.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2005, 2007 Free Software Foundation
 
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 2, 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, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
18
 * 02110-1301, USA.  */
 
19
 
 
20
/* Adapted for gnulib by Simon Josefsson, based on Libgcrypt. */
 
21
 
 
22
#include <config.h>
 
23
 
 
24
#include <stdio.h>
 
25
#include <string.h>
 
26
 
 
27
#include "des.h"
 
28
 
 
29
int
 
30
main (int argc, char *argv[])
 
31
{
 
32
  /*
 
33
   * DES Maintenance Test
 
34
   */
 
35
  {
 
36
    int i;
 
37
    char key[8] = { 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 };
 
38
    char input[8] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
 
39
    char result[8] = { 0x24, 0x6e, 0x9d, 0xb9, 0xc5, 0x50, 0x38, 0x1a };
 
40
    char temp1[8], temp2[8], temp3[8];
 
41
    gl_des_ctx des;
 
42
 
 
43
    for (i = 0; i < 64; ++i)
 
44
      {
 
45
        gl_des_setkey (&des, key);
 
46
        gl_des_ecb_encrypt (&des, input, temp1);
 
47
        gl_des_ecb_encrypt (&des, temp1, temp2);
 
48
        gl_des_setkey (&des, temp2);
 
49
        gl_des_ecb_decrypt (&des, temp1, temp3);
 
50
        memcpy (key, temp3, 8);
 
51
        memcpy (input, temp1, 8);
 
52
      }
 
53
    if (memcmp (temp3, result, 8))
 
54
      return 1;
 
55
  }
 
56
 
 
57
 
 
58
  /*
 
59
   * Self made Triple-DES test  (Does somebody know an official test?)
 
60
   */
 
61
  {
 
62
    int i;
 
63
    char input[8] = { 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10 };
 
64
    char key1[8] = { 0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0 };
 
65
    char key2[8] = { 0x11, 0x22, 0x33, 0x44, 0xff, 0xaa, 0xcc, 0xdd };
 
66
    char result[8] = { 0x7b, 0x38, 0x3b, 0x23, 0xa2, 0x7d, 0x26, 0xd3 };
 
67
 
 
68
    gl_3des_ctx des3;
 
69
 
 
70
    for (i = 0; i < 16; ++i)
 
71
      {
 
72
        gl_3des_set2keys (&des3, key1, key2);
 
73
        gl_3des_ecb_encrypt (&des3, input, key1);
 
74
        gl_3des_ecb_decrypt (&des3, input, key2);
 
75
        gl_3des_set3keys (&des3, key1, input, key2);
 
76
        gl_3des_ecb_encrypt (&des3, input, input);
 
77
      }
 
78
    if (memcmp (input, result, 8))
 
79
      return 1;
 
80
  }
 
81
 
 
82
  /*
 
83
   * More Triple-DES test.  These are testvectors as used by SSLeay,
 
84
   * thanks to Jeroen C. van Gelderen.
 
85
   */
 
86
  {
 
87
    struct
 
88
    {
 
89
      char key[24];
 
90
      char plain[8];
 
91
      char cipher[8];
 
92
    } testdata[] =
 
93
    {
 
94
      {
 
95
        {
 
96
        0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
 
97
            0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
 
98
            0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01},
 
99
        {
 
100
        0x95, 0xF8, 0xA5, 0xE5, 0xDD, 0x31, 0xD9, 0x00},
 
101
        {
 
102
      0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}},
 
103
      {
 
104
        {
 
105
        0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
 
106
            0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
 
107
            0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01},
 
108
        {
 
109
        0x9D, 0x64, 0x55, 0x5A, 0x9A, 0x10, 0xB8, 0x52,},
 
110
        {
 
111
        0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00}
 
112
      },
 
113
      {
 
114
        {
 
115
        0x38, 0x49, 0x67, 0x4C, 0x26, 0x02, 0x31, 0x9E,
 
116
            0x38, 0x49, 0x67, 0x4C, 0x26, 0x02, 0x31, 0x9E,
 
117
            0x38, 0x49, 0x67, 0x4C, 0x26, 0x02, 0x31, 0x9E},
 
118
        {
 
119
        0x51, 0x45, 0x4B, 0x58, 0x2D, 0xDF, 0x44, 0x0A},
 
120
        {
 
121
        0x71, 0x78, 0x87, 0x6E, 0x01, 0xF1, 0x9B, 0x2A}
 
122
      },
 
123
      {
 
124
        {
 
125
        0x04, 0xB9, 0x15, 0xBA, 0x43, 0xFE, 0xB5, 0xB6,
 
126
            0x04, 0xB9, 0x15, 0xBA, 0x43, 0xFE, 0xB5, 0xB6,
 
127
            0x04, 0xB9, 0x15, 0xBA, 0x43, 0xFE, 0xB5, 0xB6},
 
128
        {
 
129
        0x42, 0xFD, 0x44, 0x30, 0x59, 0x57, 0x7F, 0xA2},
 
130
        {
 
131
        0xAF, 0x37, 0xFB, 0x42, 0x1F, 0x8C, 0x40, 0x95}
 
132
      },
 
133
      {
 
134
        {
 
135
        0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF,
 
136
            0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF,
 
137
            0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF},
 
138
        {
 
139
        0x73, 0x6F, 0x6D, 0x65, 0x64, 0x61, 0x74, 0x61},
 
140
        {
 
141
        0x3D, 0x12, 0x4F, 0xE2, 0x19, 0x8B, 0xA3, 0x18}
 
142
      },
 
143
      {
 
144
        {
 
145
        0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF,
 
146
            0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
 
147
            0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF},
 
148
        {
 
149
        0x73, 0x6F, 0x6D, 0x65, 0x64, 0x61, 0x74, 0x61},
 
150
        {
 
151
        0xFB, 0xAB, 0xA1, 0xFF, 0x9D, 0x05, 0xE9, 0xB1}
 
152
      },
 
153
      {
 
154
        {
 
155
        0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF,
 
156
            0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
 
157
            0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10},
 
158
        {
 
159
        0x73, 0x6F, 0x6D, 0x65, 0x64, 0x61, 0x74, 0x61},
 
160
        {
 
161
        0x18, 0xd7, 0x48, 0xe5, 0x63, 0x62, 0x05, 0x72}
 
162
      },
 
163
      {
 
164
        {
 
165
        0x03, 0x52, 0x02, 0x07, 0x67, 0x20, 0x82, 0x17,
 
166
            0x86, 0x02, 0x87, 0x66, 0x59, 0x08, 0x21, 0x98,
 
167
            0x64, 0x05, 0x6A, 0xBD, 0xFE, 0xA9, 0x34, 0x57},
 
168
        {
 
169
        0x73, 0x71, 0x75, 0x69, 0x67, 0x67, 0x6C, 0x65},
 
170
        {
 
171
        0xc0, 0x7d, 0x2a, 0x0f, 0xa5, 0x66, 0xfa, 0x30}
 
172
      },
 
173
      {
 
174
        {
 
175
        0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
 
176
            0x80, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
 
177
            0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02},
 
178
        {
 
179
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
 
180
        {
 
181
        0xe6, 0xe6, 0xdd, 0x5b, 0x7e, 0x72, 0x29, 0x74}
 
182
      },
 
183
      {
 
184
        {
 
185
        0x10, 0x46, 0x10, 0x34, 0x89, 0x98, 0x80, 0x20,
 
186
            0x91, 0x07, 0xD0, 0x15, 0x89, 0x19, 0x01, 0x01,
 
187
            0x19, 0x07, 0x92, 0x10, 0x98, 0x1A, 0x01, 0x01},
 
188
        {
 
189
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
 
190
        {
 
191
        0xe1, 0xef, 0x62, 0xc3, 0x32, 0xfe, 0x82, 0x5b}
 
192
      }
 
193
    };
 
194
 
 
195
    char result[8];
 
196
    int i;
 
197
    gl_3des_ctx des3;
 
198
 
 
199
    for (i = 0; i < sizeof (testdata) / sizeof (*testdata); ++i)
 
200
      {
 
201
        gl_3des_set3keys (&des3, testdata[i].key,
 
202
                          testdata[i].key + 8, testdata[i].key + 16);
 
203
 
 
204
        gl_3des_ecb_encrypt (&des3, testdata[i].plain, result);
 
205
        if (memcmp (testdata[i].cipher, result, 8))
 
206
          {
 
207
            return 1;
 
208
          }
 
209
 
 
210
        gl_3des_ecb_decrypt (&des3, testdata[i].cipher, result);
 
211
        if (memcmp (testdata[i].plain, result, 8))
 
212
          {
 
213
            return 1;
 
214
          }
 
215
      }
 
216
  }
 
217
 
 
218
  return 0;
 
219
}