Don't perform tsa tests if configured "no-ts"
[openssl.git] / test / casttest.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include <string.h>
60 #include <stdlib.h>
61 #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_CAST is defined */
62
63 #include "../e_os.h"
64
65 #ifdef OPENSSL_NO_CAST
66 int main(int argc, char *argv[])
67 {
68     printf("No CAST support\n");
69     return (0);
70 }
71 #else
72 # include <openssl/cast.h>
73
74 # define FULL_TEST
75
76 static unsigned char k[16] = {
77     0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78,
78     0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A
79 };
80
81 static unsigned char in[8] =
82     { 0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF };
83
84 static int k_len[3] = { 16, 10, 5 };
85
86 static unsigned char c[3][8] = {
87     {0x23, 0x8B, 0x4F, 0xE5, 0x84, 0x7E, 0x44, 0xB2},
88     {0xEB, 0x6A, 0x71, 0x1A, 0x2C, 0x02, 0x27, 0x1B},
89     {0x7A, 0xC8, 0x16, 0xD1, 0x6E, 0x9B, 0x30, 0x2E},
90 };
91
92 static unsigned char out[80];
93
94 static unsigned char in_a[16] = {
95     0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78,
96     0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A
97 };
98
99 static unsigned char in_b[16] = {
100     0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78,
101     0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A
102 };
103
104 static unsigned char c_a[16] = {
105     0xEE, 0xA9, 0xD0, 0xA2, 0x49, 0xFD, 0x3B, 0xA6,
106     0xB3, 0x43, 0x6F, 0xB8, 0x9D, 0x6D, 0xCA, 0x92
107 };
108
109 static unsigned char c_b[16] = {
110     0xB2, 0xC9, 0x5E, 0xB0, 0x0C, 0x31, 0xAD, 0x71,
111     0x80, 0xAC, 0x05, 0xB8, 0xE8, 0x3D, 0x69, 0x6E
112 };
113
114 int main(int argc, char *argv[])
115 {
116 # ifdef FULL_TEST
117     long l;
118     CAST_KEY key_b;
119 # endif
120     int i, z, err = 0;
121     CAST_KEY key;
122
123     for (z = 0; z < 3; z++) {
124         CAST_set_key(&key, k_len[z], k);
125
126         CAST_ecb_encrypt(in, out, &key, CAST_ENCRYPT);
127         if (memcmp(out, &(c[z][0]), 8) != 0) {
128             printf("ecb cast error encrypting for keysize %d\n",
129                    k_len[z] * 8);
130             printf("got     :");
131             for (i = 0; i < 8; i++)
132                 printf("%02X ", out[i]);
133             printf("\n");
134             printf("expected:");
135             for (i = 0; i < 8; i++)
136                 printf("%02X ", c[z][i]);
137             err = 20;
138             printf("\n");
139         }
140
141         CAST_ecb_encrypt(out, out, &key, CAST_DECRYPT);
142         if (memcmp(out, in, 8) != 0) {
143             printf("ecb cast error decrypting for keysize %d\n",
144                    k_len[z] * 8);
145             printf("got     :");
146             for (i = 0; i < 8; i++)
147                 printf("%02X ", out[i]);
148             printf("\n");
149             printf("expected:");
150             for (i = 0; i < 8; i++)
151                 printf("%02X ", in[i]);
152             printf("\n");
153             err = 3;
154         }
155     }
156     if (err == 0)
157         printf("ecb cast5 ok\n");
158
159 # ifdef FULL_TEST
160     {
161         unsigned char out_a[16], out_b[16];
162         static char *hex = "0123456789ABCDEF";
163
164         printf("This test will take some time....");
165         fflush(stdout);
166         memcpy(out_a, in_a, sizeof(in_a));
167         memcpy(out_b, in_b, sizeof(in_b));
168         i = 1;
169
170         for (l = 0; l < 1000000L; l++) {
171             CAST_set_key(&key_b, 16, out_b);
172             CAST_ecb_encrypt(&(out_a[0]), &(out_a[0]), &key_b, CAST_ENCRYPT);
173             CAST_ecb_encrypt(&(out_a[8]), &(out_a[8]), &key_b, CAST_ENCRYPT);
174             CAST_set_key(&key, 16, out_a);
175             CAST_ecb_encrypt(&(out_b[0]), &(out_b[0]), &key, CAST_ENCRYPT);
176             CAST_ecb_encrypt(&(out_b[8]), &(out_b[8]), &key, CAST_ENCRYPT);
177             if ((l & 0xffff) == 0xffff) {
178                 printf("%c", hex[i & 0x0f]);
179                 fflush(stdout);
180                 i++;
181             }
182         }
183
184         if ((memcmp(out_a, c_a, sizeof(c_a)) != 0) ||
185             (memcmp(out_b, c_b, sizeof(c_b)) != 0)) {
186             printf("\n");
187             printf("Error\n");
188
189             printf("A out =");
190             for (i = 0; i < 16; i++)
191                 printf("%02X ", out_a[i]);
192             printf("\nactual=");
193             for (i = 0; i < 16; i++)
194                 printf("%02X ", c_a[i]);
195             printf("\n");
196
197             printf("B out =");
198             for (i = 0; i < 16; i++)
199                 printf("%02X ", out_b[i]);
200             printf("\nactual=");
201             for (i = 0; i < 16; i++)
202                 printf("%02X ", c_b[i]);
203             printf("\n");
204         } else
205             printf(" ok\n");
206     }
207 # endif
208
209     EXIT(err);
210 }
211 #endif