155714Skris/* crypto/rc2/rc2test.c */
255714Skris/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
355714Skris * All rights reserved.
455714Skris *
555714Skris * This package is an SSL implementation written
655714Skris * by Eric Young (eay@cryptsoft.com).
755714Skris * The implementation was written so as to conform with Netscapes SSL.
8280304Sjkim *
955714Skris * This library is free for commercial and non-commercial use as long as
1055714Skris * the following conditions are aheared to.  The following conditions
1155714Skris * apply to all code found in this distribution, be it the RC4, RSA,
1255714Skris * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
1355714Skris * included with this distribution is covered by the same copyright terms
1455714Skris * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15280304Sjkim *
1655714Skris * Copyright remains Eric Young's, and as such any Copyright notices in
1755714Skris * the code are not to be removed.
1855714Skris * If this package is used in a product, Eric Young should be given attribution
1955714Skris * as the author of the parts of the library used.
2055714Skris * This can be in the form of a textual message at program startup or
2155714Skris * in documentation (online or textual) provided with the package.
22280304Sjkim *
2355714Skris * Redistribution and use in source and binary forms, with or without
2455714Skris * modification, are permitted provided that the following conditions
2555714Skris * are met:
2655714Skris * 1. Redistributions of source code must retain the copyright
2755714Skris *    notice, this list of conditions and the following disclaimer.
2855714Skris * 2. Redistributions in binary form must reproduce the above copyright
2955714Skris *    notice, this list of conditions and the following disclaimer in the
3055714Skris *    documentation and/or other materials provided with the distribution.
3155714Skris * 3. All advertising materials mentioning features or use of this software
3255714Skris *    must display the following acknowledgement:
3355714Skris *    "This product includes cryptographic software written by
3455714Skris *     Eric Young (eay@cryptsoft.com)"
3555714Skris *    The word 'cryptographic' can be left out if the rouines from the library
3655714Skris *    being used are not cryptographic related :-).
37280304Sjkim * 4. If you include any Windows specific code (or a derivative thereof) from
3855714Skris *    the apps directory (application code) you must include an acknowledgement:
3955714Skris *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40280304Sjkim *
4155714Skris * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
4255714Skris * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4355714Skris * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4455714Skris * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4555714Skris * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4655714Skris * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4755714Skris * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4855714Skris * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4955714Skris * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
5055714Skris * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
5155714Skris * SUCH DAMAGE.
52280304Sjkim *
5355714Skris * The licence and distribution terms for any publically available version or
5455714Skris * derivative of this code cannot be changed.  i.e. this code cannot simply be
5555714Skris * copied and put under another distribution licence
5655714Skris * [including the GNU Public Licence.]
5755714Skris */
5855714Skris
59280304Sjkim/*
60280304Sjkim * This has been a quickly hacked 'ideatest.c'.  When I add tests for other
61280304Sjkim * RC2 modes, more of the code will be uncommented.
62280304Sjkim */
6355714Skris
6455714Skris#include <stdio.h>
6555714Skris#include <string.h>
6655714Skris#include <stdlib.h>
6755714Skris
68109998Smarkm#include "../e_os.h"
69109998Smarkm
70109998Smarkm#ifdef OPENSSL_NO_RC2
7155714Skrisint main(int argc, char *argv[])
7255714Skris{
7355714Skris    printf("No RC2 support\n");
74280304Sjkim    return (0);
7555714Skris}
7655714Skris#else
77280304Sjkim# include <openssl/rc2.h>
7855714Skris
79280304Sjkimstatic unsigned char RC2key[4][16] = {
80280304Sjkim    {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
81280304Sjkim     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
82280304Sjkim    {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
83280304Sjkim     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01},
84280304Sjkim    {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
85280304Sjkim     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
86280304Sjkim    {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
87280304Sjkim     0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F},
88280304Sjkim};
8955714Skris
90280304Sjkimstatic unsigned char RC2plain[4][8] = {
91280304Sjkim    {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
92280304Sjkim    {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
93280304Sjkim    {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
94280304Sjkim    {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
95280304Sjkim};
9655714Skris
97280304Sjkimstatic unsigned char RC2cipher[4][8] = {
98280304Sjkim    {0x1C, 0x19, 0x8A, 0x83, 0x8D, 0xF0, 0x28, 0xB7},
99280304Sjkim    {0x21, 0x82, 0x9C, 0x78, 0xA9, 0xF9, 0xC0, 0x74},
100280304Sjkim    {0x13, 0xDB, 0x35, 0x17, 0xD3, 0x21, 0x86, 0x9E},
101280304Sjkim    {0x50, 0xDC, 0x01, 0x62, 0xBD, 0x75, 0x7F, 0x31},
102280304Sjkim};
103280304Sjkim
10455714Skris/************/
105280304Sjkim# ifdef undef
106280304Sjkimunsigned char k[16] = {
107280304Sjkim    0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04,
108280304Sjkim    0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08
109280304Sjkim};
11055714Skris
111280304Sjkimunsigned char in[8] = { 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03 };
112280304Sjkimunsigned char c[8] = { 0x11, 0xFB, 0xED, 0x2B, 0x01, 0x98, 0x6D, 0xE5 };
113280304Sjkim
11455714Skrisunsigned char out[80];
11555714Skris
116280304Sjkimchar *text = "Hello to all people out there";
11755714Skris
118280304Sjkimstatic unsigned char cfb_key[16] = {
119280304Sjkim    0xe1, 0xf0, 0xc3, 0xd2, 0xa5, 0xb4, 0x87, 0x96,
120280304Sjkim    0x69, 0x78, 0x4b, 0x5a, 0x2d, 0x3c, 0x0f, 0x1e,
121280304Sjkim};
122280304Sjkimstatic unsigned char cfb_iv[80] =
123280304Sjkim    { 0x34, 0x12, 0x78, 0x56, 0xab, 0x90, 0xef, 0xcd };
124280304Sjkimstatic unsigned char cfb_buf1[40], cfb_buf2[40], cfb_tmp[8];
125280304Sjkim#  define CFB_TEST_SIZE 24
126280304Sjkimstatic unsigned char plain[CFB_TEST_SIZE] = {
127280304Sjkim    0x4e, 0x6f, 0x77, 0x20, 0x69, 0x73,
128280304Sjkim    0x20, 0x74, 0x68, 0x65, 0x20, 0x74,
129280304Sjkim    0x69, 0x6d, 0x65, 0x20, 0x66, 0x6f,
130280304Sjkim    0x72, 0x20, 0x61, 0x6c, 0x6c, 0x20
131280304Sjkim};
13255714Skris
133280304Sjkimstatic unsigned char cfb_cipher64[CFB_TEST_SIZE] = {
134280304Sjkim    0x59, 0xD8, 0xE2, 0x65, 0x00, 0x58, 0x6C, 0x3F,
135280304Sjkim    0x2C, 0x17, 0x25, 0xD0, 0x1A, 0x38, 0xB7, 0x2A,
136280304Sjkim    0x39, 0x61, 0x37, 0xDC, 0x79, 0xFB, 0x9F, 0x45
137280304Sjkim/*- 0xF9,0x78,0x32,0xB5,0x42,0x1A,0x6B,0x38,
138280304Sjkim    0x9A,0x44,0xD6,0x04,0x19,0x43,0xC4,0xD9,
139280304Sjkim    0x3D,0x1E,0xAE,0x47,0xFC,0xCF,0x29,0x0B,*/
140280304Sjkim};
14155714Skris
142280304Sjkim/*
143280304Sjkim * static int cfb64_test(unsigned char *cfb_cipher);
144280304Sjkim */
14555714Skrisstatic char *pt(unsigned char *p);
146280304Sjkim# endif
14755714Skris
14855714Skrisint main(int argc, char *argv[])
149280304Sjkim{
150280304Sjkim    int i, n, err = 0;
151280304Sjkim    RC2_KEY key;
152280304Sjkim    unsigned char buf[8], buf2[8];
15355714Skris
154280304Sjkim    for (n = 0; n < 4; n++) {
155280304Sjkim        RC2_set_key(&key, 16, &(RC2key[n][0]), 0 /* or 1024 */ );
15655714Skris
157280304Sjkim        RC2_ecb_encrypt(&(RC2plain[n][0]), buf, &key, RC2_ENCRYPT);
158280304Sjkim        if (memcmp(&(RC2cipher[n][0]), buf, 8) != 0) {
159280304Sjkim            printf("ecb rc2 error encrypting\n");
160280304Sjkim            printf("got     :");
161280304Sjkim            for (i = 0; i < 8; i++)
162280304Sjkim                printf("%02X ", buf[i]);
163280304Sjkim            printf("\n");
164280304Sjkim            printf("expected:");
165280304Sjkim            for (i = 0; i < 8; i++)
166280304Sjkim                printf("%02X ", RC2cipher[n][i]);
167280304Sjkim            err = 20;
168280304Sjkim            printf("\n");
169280304Sjkim        }
17055714Skris
171280304Sjkim        RC2_ecb_encrypt(buf, buf2, &key, RC2_DECRYPT);
172280304Sjkim        if (memcmp(&(RC2plain[n][0]), buf2, 8) != 0) {
173280304Sjkim            printf("ecb RC2 error decrypting\n");
174280304Sjkim            printf("got     :");
175280304Sjkim            for (i = 0; i < 8; i++)
176280304Sjkim                printf("%02X ", buf[i]);
177280304Sjkim            printf("\n");
178280304Sjkim            printf("expected:");
179280304Sjkim            for (i = 0; i < 8; i++)
180280304Sjkim                printf("%02X ", RC2plain[n][i]);
181280304Sjkim            printf("\n");
182280304Sjkim            err = 3;
183280304Sjkim        }
184280304Sjkim    }
18555714Skris
186280304Sjkim    if (err == 0)
187280304Sjkim        printf("ecb RC2 ok\n");
188280304Sjkim# ifdef undef
189280304Sjkim    memcpy(iv, k, 8);
190280304Sjkim    idea_cbc_encrypt((unsigned char *)text, out, strlen(text) + 1, &key, iv,
191280304Sjkim                     1);
192280304Sjkim    memcpy(iv, k, 8);
193280304Sjkim    idea_cbc_encrypt(out, out, 8, &dkey, iv, 0);
194280304Sjkim    idea_cbc_encrypt(&(out[8]), &(out[8]), strlen(text) + 1 - 8, &dkey, iv,
195280304Sjkim                     0);
196280304Sjkim    if (memcmp(text, out, strlen(text) + 1) != 0) {
197280304Sjkim        printf("cbc idea bad\n");
198280304Sjkim        err = 4;
199280304Sjkim    } else
200280304Sjkim        printf("cbc idea ok\n");
20155714Skris
202280304Sjkim    printf("cfb64 idea ");
203280304Sjkim    if (cfb64_test(cfb_cipher64)) {
204280304Sjkim        printf("bad\n");
205280304Sjkim        err = 5;
206280304Sjkim    } else
207280304Sjkim        printf("ok\n");
208280304Sjkim# endif
20955714Skris
210280304Sjkim# ifdef OPENSSL_SYS_NETWARE
211280304Sjkim    if (err)
212280304Sjkim        printf("ERROR: %d\n", err);
213280304Sjkim# endif
214280304Sjkim    EXIT(err);
215280304Sjkim    return (err);
216280304Sjkim}
21755714Skris
218280304Sjkim# ifdef undef
21955714Skrisstatic int cfb64_test(unsigned char *cfb_cipher)
220280304Sjkim{
221280304Sjkim    IDEA_KEY_SCHEDULE eks, dks;
222280304Sjkim    int err = 0, i, n;
22355714Skris
224280304Sjkim    idea_set_encrypt_key(cfb_key, &eks);
225280304Sjkim    idea_set_decrypt_key(&eks, &dks);
226280304Sjkim    memcpy(cfb_tmp, cfb_iv, 8);
227280304Sjkim    n = 0;
228280304Sjkim    idea_cfb64_encrypt(plain, cfb_buf1, (long)12, &eks,
229280304Sjkim                       cfb_tmp, &n, IDEA_ENCRYPT);
230280304Sjkim    idea_cfb64_encrypt(&(plain[12]), &(cfb_buf1[12]),
231280304Sjkim                       (long)CFB_TEST_SIZE - 12, &eks,
232280304Sjkim                       cfb_tmp, &n, IDEA_ENCRYPT);
233280304Sjkim    if (memcmp(cfb_cipher, cfb_buf1, CFB_TEST_SIZE) != 0) {
234280304Sjkim        err = 1;
235280304Sjkim        printf("idea_cfb64_encrypt encrypt error\n");
236280304Sjkim        for (i = 0; i < CFB_TEST_SIZE; i += 8)
237280304Sjkim            printf("%s\n", pt(&(cfb_buf1[i])));
238280304Sjkim    }
239280304Sjkim    memcpy(cfb_tmp, cfb_iv, 8);
240280304Sjkim    n = 0;
241280304Sjkim    idea_cfb64_encrypt(cfb_buf1, cfb_buf2, (long)17, &eks,
242280304Sjkim                       cfb_tmp, &n, IDEA_DECRYPT);
243280304Sjkim    idea_cfb64_encrypt(&(cfb_buf1[17]), &(cfb_buf2[17]),
244280304Sjkim                       (long)CFB_TEST_SIZE - 17, &dks,
245280304Sjkim                       cfb_tmp, &n, IDEA_DECRYPT);
246280304Sjkim    if (memcmp(plain, cfb_buf2, CFB_TEST_SIZE) != 0) {
247280304Sjkim        err = 1;
248280304Sjkim        printf("idea_cfb_encrypt decrypt error\n");
249280304Sjkim        for (i = 0; i < 24; i += 8)
250280304Sjkim            printf("%s\n", pt(&(cfb_buf2[i])));
251280304Sjkim    }
252280304Sjkim    return (err);
253280304Sjkim}
25455714Skris
25555714Skrisstatic char *pt(unsigned char *p)
256280304Sjkim{
257280304Sjkim    static char bufs[10][20];
258280304Sjkim    static int bnum = 0;
259280304Sjkim    char *ret;
260280304Sjkim    int i;
261280304Sjkim    static char *f = "0123456789ABCDEF";
26255714Skris
263280304Sjkim    ret = &(bufs[bnum++][0]);
264280304Sjkim    bnum %= 10;
265280304Sjkim    for (i = 0; i < 8; i++) {
266280304Sjkim        ret[i * 2] = f[(p[i] >> 4) & 0xf];
267280304Sjkim        ret[i * 2 + 1] = f[p[i] & 0xf];
268280304Sjkim    }
269280304Sjkim    ret[16] = '\0';
270280304Sjkim    return (ret);
271280304Sjkim}
272280304Sjkim
273280304Sjkim# endif
27455714Skris#endif
275