xref: /freebsd/crypto/openssl/test/bftest.c (revision e0c4386e)
1*e0c4386eSCy Schubert /*
2*e0c4386eSCy Schubert  * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3*e0c4386eSCy Schubert  *
4*e0c4386eSCy Schubert  * Licensed under the Apache License 2.0 (the "License").  You may not use
5*e0c4386eSCy Schubert  * this file except in compliance with the License.  You can obtain a copy
6*e0c4386eSCy Schubert  * in the file LICENSE in the source distribution or at
7*e0c4386eSCy Schubert  * https://www.openssl.org/source/license.html
8*e0c4386eSCy Schubert  */
9*e0c4386eSCy Schubert 
10*e0c4386eSCy Schubert /*
11*e0c4386eSCy Schubert  * BF low level APIs are deprecated for public use, but still ok for internal
12*e0c4386eSCy Schubert  * use.
13*e0c4386eSCy Schubert  */
14*e0c4386eSCy Schubert #include "internal/deprecated.h"
15*e0c4386eSCy Schubert 
16*e0c4386eSCy Schubert #include <stdio.h>
17*e0c4386eSCy Schubert #include <string.h>
18*e0c4386eSCy Schubert #include <stdlib.h>
19*e0c4386eSCy Schubert #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_BF is defined */
20*e0c4386eSCy Schubert #include "testutil.h"
21*e0c4386eSCy Schubert 
22*e0c4386eSCy Schubert #include "internal/nelem.h"
23*e0c4386eSCy Schubert 
24*e0c4386eSCy Schubert #ifndef OPENSSL_NO_BF
25*e0c4386eSCy Schubert # include <openssl/blowfish.h>
26*e0c4386eSCy Schubert 
27*e0c4386eSCy Schubert # ifdef CHARSET_EBCDIC
28*e0c4386eSCy Schubert #  include <openssl/ebcdic.h>
29*e0c4386eSCy Schubert # endif
30*e0c4386eSCy Schubert 
31*e0c4386eSCy Schubert static char bf_key[2][30] = {
32*e0c4386eSCy Schubert     "abcdefghijklmnopqrstuvwxyz",
33*e0c4386eSCy Schubert     "Who is John Galt?"
34*e0c4386eSCy Schubert };
35*e0c4386eSCy Schubert 
36*e0c4386eSCy Schubert /* big endian */
37*e0c4386eSCy Schubert static BF_LONG bf_plain[2][2] = {
38*e0c4386eSCy Schubert     {0x424c4f57L, 0x46495348L},
39*e0c4386eSCy Schubert     {0xfedcba98L, 0x76543210L}
40*e0c4386eSCy Schubert };
41*e0c4386eSCy Schubert 
42*e0c4386eSCy Schubert static BF_LONG bf_cipher[2][2] = {
43*e0c4386eSCy Schubert     {0x324ed0feL, 0xf413a203L},
44*e0c4386eSCy Schubert     {0xcc91732bL, 0x8022f684L}
45*e0c4386eSCy Schubert };
46*e0c4386eSCy Schubert 
47*e0c4386eSCy Schubert /************/
48*e0c4386eSCy Schubert 
49*e0c4386eSCy Schubert /* Lets use the DES test vectors :-) */
50*e0c4386eSCy Schubert # define NUM_TESTS 34
51*e0c4386eSCy Schubert static unsigned char ecb_data[NUM_TESTS][8] = {
52*e0c4386eSCy Schubert     {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
53*e0c4386eSCy Schubert     {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
54*e0c4386eSCy Schubert     {0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
55*e0c4386eSCy Schubert     {0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11},
56*e0c4386eSCy Schubert     {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF},
57*e0c4386eSCy Schubert     {0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11},
58*e0c4386eSCy Schubert     {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
59*e0c4386eSCy Schubert     {0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10},
60*e0c4386eSCy Schubert     {0x7C, 0xA1, 0x10, 0x45, 0x4A, 0x1A, 0x6E, 0x57},
61*e0c4386eSCy Schubert     {0x01, 0x31, 0xD9, 0x61, 0x9D, 0xC1, 0x37, 0x6E},
62*e0c4386eSCy Schubert     {0x07, 0xA1, 0x13, 0x3E, 0x4A, 0x0B, 0x26, 0x86},
63*e0c4386eSCy Schubert     {0x38, 0x49, 0x67, 0x4C, 0x26, 0x02, 0x31, 0x9E},
64*e0c4386eSCy Schubert     {0x04, 0xB9, 0x15, 0xBA, 0x43, 0xFE, 0xB5, 0xB6},
65*e0c4386eSCy Schubert     {0x01, 0x13, 0xB9, 0x70, 0xFD, 0x34, 0xF2, 0xCE},
66*e0c4386eSCy Schubert     {0x01, 0x70, 0xF1, 0x75, 0x46, 0x8F, 0xB5, 0xE6},
67*e0c4386eSCy Schubert     {0x43, 0x29, 0x7F, 0xAD, 0x38, 0xE3, 0x73, 0xFE},
68*e0c4386eSCy Schubert     {0x07, 0xA7, 0x13, 0x70, 0x45, 0xDA, 0x2A, 0x16},
69*e0c4386eSCy Schubert     {0x04, 0x68, 0x91, 0x04, 0xC2, 0xFD, 0x3B, 0x2F},
70*e0c4386eSCy Schubert     {0x37, 0xD0, 0x6B, 0xB5, 0x16, 0xCB, 0x75, 0x46},
71*e0c4386eSCy Schubert     {0x1F, 0x08, 0x26, 0x0D, 0x1A, 0xC2, 0x46, 0x5E},
72*e0c4386eSCy Schubert     {0x58, 0x40, 0x23, 0x64, 0x1A, 0xBA, 0x61, 0x76},
73*e0c4386eSCy Schubert     {0x02, 0x58, 0x16, 0x16, 0x46, 0x29, 0xB0, 0x07},
74*e0c4386eSCy Schubert     {0x49, 0x79, 0x3E, 0xBC, 0x79, 0xB3, 0x25, 0x8F},
75*e0c4386eSCy Schubert     {0x4F, 0xB0, 0x5E, 0x15, 0x15, 0xAB, 0x73, 0xA7},
76*e0c4386eSCy Schubert     {0x49, 0xE9, 0x5D, 0x6D, 0x4C, 0xA2, 0x29, 0xBF},
77*e0c4386eSCy Schubert     {0x01, 0x83, 0x10, 0xDC, 0x40, 0x9B, 0x26, 0xD6},
78*e0c4386eSCy Schubert     {0x1C, 0x58, 0x7F, 0x1C, 0x13, 0x92, 0x4F, 0xEF},
79*e0c4386eSCy Schubert     {0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01},
80*e0c4386eSCy Schubert     {0x1F, 0x1F, 0x1F, 0x1F, 0x0E, 0x0E, 0x0E, 0x0E},
81*e0c4386eSCy Schubert     {0xE0, 0xFE, 0xE0, 0xFE, 0xF1, 0xFE, 0xF1, 0xFE},
82*e0c4386eSCy Schubert     {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
83*e0c4386eSCy Schubert     {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
84*e0c4386eSCy Schubert     {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF},
85*e0c4386eSCy Schubert     {0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10}
86*e0c4386eSCy Schubert };
87*e0c4386eSCy Schubert 
88*e0c4386eSCy Schubert static unsigned char plain_data[NUM_TESTS][8] = {
89*e0c4386eSCy Schubert     {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
90*e0c4386eSCy Schubert     {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
91*e0c4386eSCy Schubert     {0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01},
92*e0c4386eSCy Schubert     {0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11},
93*e0c4386eSCy Schubert     {0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11},
94*e0c4386eSCy Schubert     {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF},
95*e0c4386eSCy Schubert     {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
96*e0c4386eSCy Schubert     {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF},
97*e0c4386eSCy Schubert     {0x01, 0xA1, 0xD6, 0xD0, 0x39, 0x77, 0x67, 0x42},
98*e0c4386eSCy Schubert     {0x5C, 0xD5, 0x4C, 0xA8, 0x3D, 0xEF, 0x57, 0xDA},
99*e0c4386eSCy Schubert     {0x02, 0x48, 0xD4, 0x38, 0x06, 0xF6, 0x71, 0x72},
100*e0c4386eSCy Schubert     {0x51, 0x45, 0x4B, 0x58, 0x2D, 0xDF, 0x44, 0x0A},
101*e0c4386eSCy Schubert     {0x42, 0xFD, 0x44, 0x30, 0x59, 0x57, 0x7F, 0xA2},
102*e0c4386eSCy Schubert     {0x05, 0x9B, 0x5E, 0x08, 0x51, 0xCF, 0x14, 0x3A},
103*e0c4386eSCy Schubert     {0x07, 0x56, 0xD8, 0xE0, 0x77, 0x47, 0x61, 0xD2},
104*e0c4386eSCy Schubert     {0x76, 0x25, 0x14, 0xB8, 0x29, 0xBF, 0x48, 0x6A},
105*e0c4386eSCy Schubert     {0x3B, 0xDD, 0x11, 0x90, 0x49, 0x37, 0x28, 0x02},
106*e0c4386eSCy Schubert     {0x26, 0x95, 0x5F, 0x68, 0x35, 0xAF, 0x60, 0x9A},
107*e0c4386eSCy Schubert     {0x16, 0x4D, 0x5E, 0x40, 0x4F, 0x27, 0x52, 0x32},
108*e0c4386eSCy Schubert     {0x6B, 0x05, 0x6E, 0x18, 0x75, 0x9F, 0x5C, 0xCA},
109*e0c4386eSCy Schubert     {0x00, 0x4B, 0xD6, 0xEF, 0x09, 0x17, 0x60, 0x62},
110*e0c4386eSCy Schubert     {0x48, 0x0D, 0x39, 0x00, 0x6E, 0xE7, 0x62, 0xF2},
111*e0c4386eSCy Schubert     {0x43, 0x75, 0x40, 0xC8, 0x69, 0x8F, 0x3C, 0xFA},
112*e0c4386eSCy Schubert     {0x07, 0x2D, 0x43, 0xA0, 0x77, 0x07, 0x52, 0x92},
113*e0c4386eSCy Schubert     {0x02, 0xFE, 0x55, 0x77, 0x81, 0x17, 0xF1, 0x2A},
114*e0c4386eSCy Schubert     {0x1D, 0x9D, 0x5C, 0x50, 0x18, 0xF7, 0x28, 0xC2},
115*e0c4386eSCy Schubert     {0x30, 0x55, 0x32, 0x28, 0x6D, 0x6F, 0x29, 0x5A},
116*e0c4386eSCy Schubert     {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF},
117*e0c4386eSCy Schubert     {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF},
118*e0c4386eSCy Schubert     {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF},
119*e0c4386eSCy Schubert     {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
120*e0c4386eSCy Schubert     {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
121*e0c4386eSCy Schubert     {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
122*e0c4386eSCy Schubert     {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}
123*e0c4386eSCy Schubert };
124*e0c4386eSCy Schubert 
125*e0c4386eSCy Schubert static unsigned char cipher_data[NUM_TESTS][8] = {
126*e0c4386eSCy Schubert     {0x4E, 0xF9, 0x97, 0x45, 0x61, 0x98, 0xDD, 0x78},
127*e0c4386eSCy Schubert     {0x51, 0x86, 0x6F, 0xD5, 0xB8, 0x5E, 0xCB, 0x8A},
128*e0c4386eSCy Schubert     {0x7D, 0x85, 0x6F, 0x9A, 0x61, 0x30, 0x63, 0xF2},
129*e0c4386eSCy Schubert     {0x24, 0x66, 0xDD, 0x87, 0x8B, 0x96, 0x3C, 0x9D},
130*e0c4386eSCy Schubert     {0x61, 0xF9, 0xC3, 0x80, 0x22, 0x81, 0xB0, 0x96},
131*e0c4386eSCy Schubert     {0x7D, 0x0C, 0xC6, 0x30, 0xAF, 0xDA, 0x1E, 0xC7},
132*e0c4386eSCy Schubert     {0x4E, 0xF9, 0x97, 0x45, 0x61, 0x98, 0xDD, 0x78},
133*e0c4386eSCy Schubert     {0x0A, 0xCE, 0xAB, 0x0F, 0xC6, 0xA0, 0xA2, 0x8D},
134*e0c4386eSCy Schubert     {0x59, 0xC6, 0x82, 0x45, 0xEB, 0x05, 0x28, 0x2B},
135*e0c4386eSCy Schubert     {0xB1, 0xB8, 0xCC, 0x0B, 0x25, 0x0F, 0x09, 0xA0},
136*e0c4386eSCy Schubert     {0x17, 0x30, 0xE5, 0x77, 0x8B, 0xEA, 0x1D, 0xA4},
137*e0c4386eSCy Schubert     {0xA2, 0x5E, 0x78, 0x56, 0xCF, 0x26, 0x51, 0xEB},
138*e0c4386eSCy Schubert     {0x35, 0x38, 0x82, 0xB1, 0x09, 0xCE, 0x8F, 0x1A},
139*e0c4386eSCy Schubert     {0x48, 0xF4, 0xD0, 0x88, 0x4C, 0x37, 0x99, 0x18},
140*e0c4386eSCy Schubert     {0x43, 0x21, 0x93, 0xB7, 0x89, 0x51, 0xFC, 0x98},
141*e0c4386eSCy Schubert     {0x13, 0xF0, 0x41, 0x54, 0xD6, 0x9D, 0x1A, 0xE5},
142*e0c4386eSCy Schubert     {0x2E, 0xED, 0xDA, 0x93, 0xFF, 0xD3, 0x9C, 0x79},
143*e0c4386eSCy Schubert     {0xD8, 0x87, 0xE0, 0x39, 0x3C, 0x2D, 0xA6, 0xE3},
144*e0c4386eSCy Schubert     {0x5F, 0x99, 0xD0, 0x4F, 0x5B, 0x16, 0x39, 0x69},
145*e0c4386eSCy Schubert     {0x4A, 0x05, 0x7A, 0x3B, 0x24, 0xD3, 0x97, 0x7B},
146*e0c4386eSCy Schubert     {0x45, 0x20, 0x31, 0xC1, 0xE4, 0xFA, 0xDA, 0x8E},
147*e0c4386eSCy Schubert     {0x75, 0x55, 0xAE, 0x39, 0xF5, 0x9B, 0x87, 0xBD},
148*e0c4386eSCy Schubert     {0x53, 0xC5, 0x5F, 0x9C, 0xB4, 0x9F, 0xC0, 0x19},
149*e0c4386eSCy Schubert     {0x7A, 0x8E, 0x7B, 0xFA, 0x93, 0x7E, 0x89, 0xA3},
150*e0c4386eSCy Schubert     {0xCF, 0x9C, 0x5D, 0x7A, 0x49, 0x86, 0xAD, 0xB5},
151*e0c4386eSCy Schubert     {0xD1, 0xAB, 0xB2, 0x90, 0x65, 0x8B, 0xC7, 0x78},
152*e0c4386eSCy Schubert     {0x55, 0xCB, 0x37, 0x74, 0xD1, 0x3E, 0xF2, 0x01},
153*e0c4386eSCy Schubert     {0xFA, 0x34, 0xEC, 0x48, 0x47, 0xB2, 0x68, 0xB2},
154*e0c4386eSCy Schubert     {0xA7, 0x90, 0x79, 0x51, 0x08, 0xEA, 0x3C, 0xAE},
155*e0c4386eSCy Schubert     {0xC3, 0x9E, 0x07, 0x2D, 0x9F, 0xAC, 0x63, 0x1D},
156*e0c4386eSCy Schubert     {0x01, 0x49, 0x33, 0xE0, 0xCD, 0xAF, 0xF6, 0xE4},
157*e0c4386eSCy Schubert     {0xF2, 0x1E, 0x9A, 0x77, 0xB7, 0x1C, 0x49, 0xBC},
158*e0c4386eSCy Schubert     {0x24, 0x59, 0x46, 0x88, 0x57, 0x54, 0x36, 0x9A},
159*e0c4386eSCy Schubert     {0x6B, 0x5C, 0x5A, 0x9C, 0x5D, 0x9E, 0x0A, 0x5A},
160*e0c4386eSCy Schubert };
161*e0c4386eSCy Schubert 
162*e0c4386eSCy Schubert static unsigned char cbc_key[16] = {
163*e0c4386eSCy Schubert     0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
164*e0c4386eSCy Schubert     0xf0, 0xe1, 0xd2, 0xc3, 0xb4, 0xa5, 0x96, 0x87
165*e0c4386eSCy Schubert };
166*e0c4386eSCy Schubert static unsigned char cbc_iv[8] =
167*e0c4386eSCy Schubert     { 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10 };
168*e0c4386eSCy Schubert static char cbc_data[40] = "7654321 Now is the time for ";
169*e0c4386eSCy Schubert static unsigned char cbc_ok[32] = {
170*e0c4386eSCy Schubert     0x6B, 0x77, 0xB4, 0xD6, 0x30, 0x06, 0xDE, 0xE6,
171*e0c4386eSCy Schubert     0x05, 0xB1, 0x56, 0xE2, 0x74, 0x03, 0x97, 0x93,
172*e0c4386eSCy Schubert     0x58, 0xDE, 0xB9, 0xE7, 0x15, 0x46, 0x16, 0xD9,
173*e0c4386eSCy Schubert     0x59, 0xF1, 0x65, 0x2B, 0xD5, 0xFF, 0x92, 0xCC
174*e0c4386eSCy Schubert };
175*e0c4386eSCy Schubert 
176*e0c4386eSCy Schubert static unsigned char cfb64_ok[] = {
177*e0c4386eSCy Schubert     0xE7, 0x32, 0x14, 0xA2, 0x82, 0x21, 0x39, 0xCA,
178*e0c4386eSCy Schubert     0xF2, 0x6E, 0xCF, 0x6D, 0x2E, 0xB9, 0xE7, 0x6E,
179*e0c4386eSCy Schubert     0x3D, 0xA3, 0xDE, 0x04, 0xD1, 0x51, 0x72, 0x00,
180*e0c4386eSCy Schubert     0x51, 0x9D, 0x57, 0xA6, 0xC3
181*e0c4386eSCy Schubert };
182*e0c4386eSCy Schubert 
183*e0c4386eSCy Schubert static unsigned char ofb64_ok[] = {
184*e0c4386eSCy Schubert     0xE7, 0x32, 0x14, 0xA2, 0x82, 0x21, 0x39, 0xCA,
185*e0c4386eSCy Schubert     0x62, 0xB3, 0x43, 0xCC, 0x5B, 0x65, 0x58, 0x73,
186*e0c4386eSCy Schubert     0x10, 0xDD, 0x90, 0x8D, 0x0C, 0x24, 0x1B, 0x22,
187*e0c4386eSCy Schubert     0x63, 0xC2, 0xCF, 0x80, 0xDA
188*e0c4386eSCy Schubert };
189*e0c4386eSCy Schubert 
190*e0c4386eSCy Schubert # define KEY_TEST_NUM    25
191*e0c4386eSCy Schubert static unsigned char key_test[KEY_TEST_NUM] = {
192*e0c4386eSCy Schubert     0xf0, 0xe1, 0xd2, 0xc3, 0xb4, 0xa5, 0x96, 0x87,
193*e0c4386eSCy Schubert     0x78, 0x69, 0x5a, 0x4b, 0x3c, 0x2d, 0x1e, 0x0f,
194*e0c4386eSCy Schubert     0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
195*e0c4386eSCy Schubert     0x88
196*e0c4386eSCy Schubert };
197*e0c4386eSCy Schubert 
198*e0c4386eSCy Schubert static unsigned char key_data[8] =
199*e0c4386eSCy Schubert     { 0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10 };
200*e0c4386eSCy Schubert 
201*e0c4386eSCy Schubert static unsigned char key_out[KEY_TEST_NUM][8] = {
202*e0c4386eSCy Schubert     {0xF9, 0xAD, 0x59, 0x7C, 0x49, 0xDB, 0x00, 0x5E},
203*e0c4386eSCy Schubert     {0xE9, 0x1D, 0x21, 0xC1, 0xD9, 0x61, 0xA6, 0xD6},
204*e0c4386eSCy Schubert     {0xE9, 0xC2, 0xB7, 0x0A, 0x1B, 0xC6, 0x5C, 0xF3},
205*e0c4386eSCy Schubert     {0xBE, 0x1E, 0x63, 0x94, 0x08, 0x64, 0x0F, 0x05},
206*e0c4386eSCy Schubert     {0xB3, 0x9E, 0x44, 0x48, 0x1B, 0xDB, 0x1E, 0x6E},
207*e0c4386eSCy Schubert     {0x94, 0x57, 0xAA, 0x83, 0xB1, 0x92, 0x8C, 0x0D},
208*e0c4386eSCy Schubert     {0x8B, 0xB7, 0x70, 0x32, 0xF9, 0x60, 0x62, 0x9D},
209*e0c4386eSCy Schubert     {0xE8, 0x7A, 0x24, 0x4E, 0x2C, 0xC8, 0x5E, 0x82},
210*e0c4386eSCy Schubert     {0x15, 0x75, 0x0E, 0x7A, 0x4F, 0x4E, 0xC5, 0x77},
211*e0c4386eSCy Schubert     {0x12, 0x2B, 0xA7, 0x0B, 0x3A, 0xB6, 0x4A, 0xE0},
212*e0c4386eSCy Schubert     {0x3A, 0x83, 0x3C, 0x9A, 0xFF, 0xC5, 0x37, 0xF6},
213*e0c4386eSCy Schubert     {0x94, 0x09, 0xDA, 0x87, 0xA9, 0x0F, 0x6B, 0xF2},
214*e0c4386eSCy Schubert     {0x88, 0x4F, 0x80, 0x62, 0x50, 0x60, 0xB8, 0xB4},
215*e0c4386eSCy Schubert     {0x1F, 0x85, 0x03, 0x1C, 0x19, 0xE1, 0x19, 0x68},
216*e0c4386eSCy Schubert     {0x79, 0xD9, 0x37, 0x3A, 0x71, 0x4C, 0xA3, 0x4F},
217*e0c4386eSCy Schubert     {0x93, 0x14, 0x28, 0x87, 0xEE, 0x3B, 0xE1, 0x5C},
218*e0c4386eSCy Schubert     {0x03, 0x42, 0x9E, 0x83, 0x8C, 0xE2, 0xD1, 0x4B},
219*e0c4386eSCy Schubert     {0xA4, 0x29, 0x9E, 0x27, 0x46, 0x9F, 0xF6, 0x7B},
220*e0c4386eSCy Schubert     {0xAF, 0xD5, 0xAE, 0xD1, 0xC1, 0xBC, 0x96, 0xA8},
221*e0c4386eSCy Schubert     {0x10, 0x85, 0x1C, 0x0E, 0x38, 0x58, 0xDA, 0x9F},
222*e0c4386eSCy Schubert     {0xE6, 0xF5, 0x1E, 0xD7, 0x9B, 0x9D, 0xB2, 0x1F},
223*e0c4386eSCy Schubert     {0x64, 0xA6, 0xE1, 0x4A, 0xFD, 0x36, 0xB4, 0x6F},
224*e0c4386eSCy Schubert     {0x80, 0xC7, 0xD7, 0xD4, 0x5A, 0x54, 0x79, 0xAD},
225*e0c4386eSCy Schubert     {0x05, 0x04, 0x4B, 0x62, 0xFA, 0x52, 0xD0, 0x80},
226*e0c4386eSCy Schubert };
227*e0c4386eSCy Schubert 
print_test_data(void)228*e0c4386eSCy Schubert static int print_test_data(void)
229*e0c4386eSCy Schubert {
230*e0c4386eSCy Schubert     unsigned int i, j;
231*e0c4386eSCy Schubert 
232*e0c4386eSCy Schubert     printf("ecb test data\n");
233*e0c4386eSCy Schubert     printf("key bytes\t\tclear bytes\t\tcipher bytes\n");
234*e0c4386eSCy Schubert     for (i = 0; i < NUM_TESTS; i++) {
235*e0c4386eSCy Schubert         for (j = 0; j < 8; j++)
236*e0c4386eSCy Schubert             printf("%02X", ecb_data[i][j]);
237*e0c4386eSCy Schubert         printf("\t");
238*e0c4386eSCy Schubert         for (j = 0; j < 8; j++)
239*e0c4386eSCy Schubert             printf("%02X", plain_data[i][j]);
240*e0c4386eSCy Schubert         printf("\t");
241*e0c4386eSCy Schubert         for (j = 0; j < 8; j++)
242*e0c4386eSCy Schubert             printf("%02X", cipher_data[i][j]);
243*e0c4386eSCy Schubert         printf("\n");
244*e0c4386eSCy Schubert     }
245*e0c4386eSCy Schubert 
246*e0c4386eSCy Schubert     printf("set_key test data\n");
247*e0c4386eSCy Schubert     printf("data[8]= ");
248*e0c4386eSCy Schubert     for (j = 0; j < 8; j++)
249*e0c4386eSCy Schubert         printf("%02X", key_data[j]);
250*e0c4386eSCy Schubert     printf("\n");
251*e0c4386eSCy Schubert     for (i = 0; i < KEY_TEST_NUM - 1; i++) {
252*e0c4386eSCy Schubert         printf("c=");
253*e0c4386eSCy Schubert         for (j = 0; j < 8; j++)
254*e0c4386eSCy Schubert             printf("%02X", key_out[i][j]);
255*e0c4386eSCy Schubert         printf(" k[%2u]=", i + 1);
256*e0c4386eSCy Schubert         for (j = 0; j < i + 1; j++)
257*e0c4386eSCy Schubert             printf("%02X", key_test[j]);
258*e0c4386eSCy Schubert         printf("\n");
259*e0c4386eSCy Schubert     }
260*e0c4386eSCy Schubert 
261*e0c4386eSCy Schubert     printf("\nchaining mode test data\n");
262*e0c4386eSCy Schubert     printf("key[16]   = ");
263*e0c4386eSCy Schubert     for (j = 0; j < 16; j++)
264*e0c4386eSCy Schubert         printf("%02X", cbc_key[j]);
265*e0c4386eSCy Schubert     printf("\niv[8]     = ");
266*e0c4386eSCy Schubert     for (j = 0; j < 8; j++)
267*e0c4386eSCy Schubert         printf("%02X", cbc_iv[j]);
268*e0c4386eSCy Schubert     printf("\ndata[%d]  = '%s'", (int)strlen(cbc_data) + 1, cbc_data);
269*e0c4386eSCy Schubert     printf("\ndata[%d]  = ", (int)strlen(cbc_data) + 1);
270*e0c4386eSCy Schubert     for (j = 0; j < strlen(cbc_data) + 1; j++)
271*e0c4386eSCy Schubert         printf("%02X", cbc_data[j]);
272*e0c4386eSCy Schubert     printf("\n");
273*e0c4386eSCy Schubert     printf("cbc cipher text\n");
274*e0c4386eSCy Schubert     printf("cipher[%d]= ", 32);
275*e0c4386eSCy Schubert     for (j = 0; j < 32; j++)
276*e0c4386eSCy Schubert         printf("%02X", cbc_ok[j]);
277*e0c4386eSCy Schubert     printf("\n");
278*e0c4386eSCy Schubert 
279*e0c4386eSCy Schubert     printf("cfb64 cipher text\n");
280*e0c4386eSCy Schubert     printf("cipher[%d]= ", (int)strlen(cbc_data) + 1);
281*e0c4386eSCy Schubert     for (j = 0; j < strlen(cbc_data) + 1; j++)
282*e0c4386eSCy Schubert         printf("%02X", cfb64_ok[j]);
283*e0c4386eSCy Schubert     printf("\n");
284*e0c4386eSCy Schubert 
285*e0c4386eSCy Schubert     printf("ofb64 cipher text\n");
286*e0c4386eSCy Schubert     printf("cipher[%d]= ", (int)strlen(cbc_data) + 1);
287*e0c4386eSCy Schubert     for (j = 0; j < strlen(cbc_data) + 1; j++)
288*e0c4386eSCy Schubert         printf("%02X", ofb64_ok[j]);
289*e0c4386eSCy Schubert     printf("\n");
290*e0c4386eSCy Schubert     return 0;
291*e0c4386eSCy Schubert }
292*e0c4386eSCy Schubert 
test_bf_ecb_raw(int n)293*e0c4386eSCy Schubert static int test_bf_ecb_raw(int n)
294*e0c4386eSCy Schubert {
295*e0c4386eSCy Schubert     int ret = 1;
296*e0c4386eSCy Schubert     BF_KEY key;
297*e0c4386eSCy Schubert     BF_LONG data[2];
298*e0c4386eSCy Schubert 
299*e0c4386eSCy Schubert     BF_set_key(&key, strlen(bf_key[n]), (unsigned char *)bf_key[n]);
300*e0c4386eSCy Schubert 
301*e0c4386eSCy Schubert     data[0] = bf_plain[n][0];
302*e0c4386eSCy Schubert     data[1] = bf_plain[n][1];
303*e0c4386eSCy Schubert     BF_encrypt(data, &key);
304*e0c4386eSCy Schubert     if (!TEST_mem_eq(&(bf_cipher[n][0]), BF_BLOCK, &(data[0]), BF_BLOCK))
305*e0c4386eSCy Schubert         ret = 0;
306*e0c4386eSCy Schubert 
307*e0c4386eSCy Schubert     BF_decrypt(&(data[0]), &key);
308*e0c4386eSCy Schubert     if (!TEST_mem_eq(&(bf_plain[n][0]), BF_BLOCK, &(data[0]), BF_BLOCK))
309*e0c4386eSCy Schubert         ret = 0;
310*e0c4386eSCy Schubert 
311*e0c4386eSCy Schubert     return ret;
312*e0c4386eSCy Schubert }
313*e0c4386eSCy Schubert 
test_bf_ecb(int n)314*e0c4386eSCy Schubert static int test_bf_ecb(int n)
315*e0c4386eSCy Schubert {
316*e0c4386eSCy Schubert     int ret = 1;
317*e0c4386eSCy Schubert     BF_KEY key;
318*e0c4386eSCy Schubert     unsigned char out[8];
319*e0c4386eSCy Schubert 
320*e0c4386eSCy Schubert     BF_set_key(&key, 8, ecb_data[n]);
321*e0c4386eSCy Schubert 
322*e0c4386eSCy Schubert     BF_ecb_encrypt(&(plain_data[n][0]), out, &key, BF_ENCRYPT);
323*e0c4386eSCy Schubert     if (!TEST_mem_eq(&(cipher_data[n][0]), BF_BLOCK, out, BF_BLOCK))
324*e0c4386eSCy Schubert         ret = 0;
325*e0c4386eSCy Schubert 
326*e0c4386eSCy Schubert     BF_ecb_encrypt(out, out, &key, BF_DECRYPT);
327*e0c4386eSCy Schubert     if (!TEST_mem_eq(&(plain_data[n][0]), BF_BLOCK, out, BF_BLOCK))
328*e0c4386eSCy Schubert         ret = 0;
329*e0c4386eSCy Schubert 
330*e0c4386eSCy Schubert     return ret;
331*e0c4386eSCy Schubert }
332*e0c4386eSCy Schubert 
test_bf_set_key(int n)333*e0c4386eSCy Schubert static int test_bf_set_key(int n)
334*e0c4386eSCy Schubert {
335*e0c4386eSCy Schubert     int ret = 1;
336*e0c4386eSCy Schubert     BF_KEY key;
337*e0c4386eSCy Schubert     unsigned char out[8];
338*e0c4386eSCy Schubert 
339*e0c4386eSCy Schubert     BF_set_key(&key, n+1, key_test);
340*e0c4386eSCy Schubert     BF_ecb_encrypt(key_data, out, &key, BF_ENCRYPT);
341*e0c4386eSCy Schubert     /* mips-sgi-irix6.5-gcc  vv  -mabi=64 bug workaround */
342*e0c4386eSCy Schubert     if (!TEST_mem_eq(out, 8, &(key_out[n][0]), 8))
343*e0c4386eSCy Schubert         ret = 0;
344*e0c4386eSCy Schubert 
345*e0c4386eSCy Schubert     return ret;
346*e0c4386eSCy Schubert }
347*e0c4386eSCy Schubert 
test_bf_cbc(void)348*e0c4386eSCy Schubert static int test_bf_cbc(void)
349*e0c4386eSCy Schubert {
350*e0c4386eSCy Schubert     unsigned char cbc_in[40], cbc_out[40], iv[8];
351*e0c4386eSCy Schubert     int ret = 1;
352*e0c4386eSCy Schubert     BF_KEY key;
353*e0c4386eSCy Schubert     BF_LONG len;
354*e0c4386eSCy Schubert 
355*e0c4386eSCy Schubert     len = strlen(cbc_data) + 1;
356*e0c4386eSCy Schubert 
357*e0c4386eSCy Schubert     BF_set_key(&key, 16, cbc_key);
358*e0c4386eSCy Schubert     memset(cbc_in, 0, sizeof(cbc_in));
359*e0c4386eSCy Schubert     memset(cbc_out, 0, sizeof(cbc_out));
360*e0c4386eSCy Schubert     memcpy(iv, cbc_iv, sizeof(iv));
361*e0c4386eSCy Schubert     BF_cbc_encrypt((unsigned char *)cbc_data, cbc_out, len,
362*e0c4386eSCy Schubert                    &key, iv, BF_ENCRYPT);
363*e0c4386eSCy Schubert     if (!TEST_mem_eq(cbc_out, 32, cbc_ok, 32))
364*e0c4386eSCy Schubert         ret = 0;
365*e0c4386eSCy Schubert 
366*e0c4386eSCy Schubert     memcpy(iv, cbc_iv, 8);
367*e0c4386eSCy Schubert     BF_cbc_encrypt(cbc_out, cbc_in, len, &key, iv, BF_DECRYPT);
368*e0c4386eSCy Schubert     if (!TEST_mem_eq(cbc_in, len, cbc_data, strlen(cbc_data) + 1))
369*e0c4386eSCy Schubert         ret = 0;
370*e0c4386eSCy Schubert 
371*e0c4386eSCy Schubert     return ret;
372*e0c4386eSCy Schubert }
373*e0c4386eSCy Schubert 
test_bf_cfb64(void)374*e0c4386eSCy Schubert static int test_bf_cfb64(void)
375*e0c4386eSCy Schubert {
376*e0c4386eSCy Schubert     unsigned char cbc_in[40], cbc_out[40], iv[8];
377*e0c4386eSCy Schubert     int n, ret = 1;
378*e0c4386eSCy Schubert     BF_KEY key;
379*e0c4386eSCy Schubert     BF_LONG len;
380*e0c4386eSCy Schubert 
381*e0c4386eSCy Schubert     len = strlen(cbc_data) + 1;
382*e0c4386eSCy Schubert 
383*e0c4386eSCy Schubert     BF_set_key(&key, 16, cbc_key);
384*e0c4386eSCy Schubert     memset(cbc_in, 0, 40);
385*e0c4386eSCy Schubert     memset(cbc_out, 0, 40);
386*e0c4386eSCy Schubert     memcpy(iv, cbc_iv, 8);
387*e0c4386eSCy Schubert     n = 0;
388*e0c4386eSCy Schubert     BF_cfb64_encrypt((unsigned char *)cbc_data, cbc_out, (long)13,
389*e0c4386eSCy Schubert                      &key, iv, &n, BF_ENCRYPT);
390*e0c4386eSCy Schubert     BF_cfb64_encrypt((unsigned char *)&(cbc_data[13]), &(cbc_out[13]),
391*e0c4386eSCy Schubert                      len - 13, &key, iv, &n, BF_ENCRYPT);
392*e0c4386eSCy Schubert     if (!TEST_mem_eq(cbc_out, (int)len, cfb64_ok, (int)len))
393*e0c4386eSCy Schubert         ret = 0;
394*e0c4386eSCy Schubert 
395*e0c4386eSCy Schubert     n = 0;
396*e0c4386eSCy Schubert     memcpy(iv, cbc_iv, 8);
397*e0c4386eSCy Schubert     BF_cfb64_encrypt(cbc_out, cbc_in, 17, &key, iv, &n, BF_DECRYPT);
398*e0c4386eSCy Schubert     BF_cfb64_encrypt(&(cbc_out[17]), &(cbc_in[17]), len - 17,
399*e0c4386eSCy Schubert                      &key, iv, &n, BF_DECRYPT);
400*e0c4386eSCy Schubert     if (!TEST_mem_eq(cbc_in, (int)len, cbc_data, (int)len))
401*e0c4386eSCy Schubert         ret = 0;
402*e0c4386eSCy Schubert 
403*e0c4386eSCy Schubert     return ret;
404*e0c4386eSCy Schubert }
405*e0c4386eSCy Schubert 
test_bf_ofb64(void)406*e0c4386eSCy Schubert static int test_bf_ofb64(void)
407*e0c4386eSCy Schubert {
408*e0c4386eSCy Schubert     unsigned char cbc_in[40], cbc_out[40], iv[8];
409*e0c4386eSCy Schubert     int n, ret = 1;
410*e0c4386eSCy Schubert     BF_KEY key;
411*e0c4386eSCy Schubert     BF_LONG len;
412*e0c4386eSCy Schubert 
413*e0c4386eSCy Schubert     len = strlen(cbc_data) + 1;
414*e0c4386eSCy Schubert 
415*e0c4386eSCy Schubert     BF_set_key(&key, 16, cbc_key);
416*e0c4386eSCy Schubert     memset(cbc_in, 0, 40);
417*e0c4386eSCy Schubert     memset(cbc_out, 0, 40);
418*e0c4386eSCy Schubert     memcpy(iv, cbc_iv, 8);
419*e0c4386eSCy Schubert     n = 0;
420*e0c4386eSCy Schubert     BF_ofb64_encrypt((unsigned char *)cbc_data, cbc_out, (long)13, &key, iv,
421*e0c4386eSCy Schubert                      &n);
422*e0c4386eSCy Schubert     BF_ofb64_encrypt((unsigned char *)&(cbc_data[13]), &(cbc_out[13]),
423*e0c4386eSCy Schubert                      len - 13, &key, iv, &n);
424*e0c4386eSCy Schubert     if (!TEST_mem_eq(cbc_out, (int)len, ofb64_ok, (int)len))
425*e0c4386eSCy Schubert         ret = 0;
426*e0c4386eSCy Schubert 
427*e0c4386eSCy Schubert     n = 0;
428*e0c4386eSCy Schubert     memcpy(iv, cbc_iv, 8);
429*e0c4386eSCy Schubert     BF_ofb64_encrypt(cbc_out, cbc_in, 17, &key, iv, &n);
430*e0c4386eSCy Schubert     BF_ofb64_encrypt(&(cbc_out[17]), &(cbc_in[17]), len - 17, &key, iv, &n);
431*e0c4386eSCy Schubert     if (!TEST_mem_eq(cbc_in, (int)len, cbc_data, (int)len))
432*e0c4386eSCy Schubert         ret = 0;
433*e0c4386eSCy Schubert 
434*e0c4386eSCy Schubert     return ret;
435*e0c4386eSCy Schubert }
436*e0c4386eSCy Schubert #endif
437*e0c4386eSCy Schubert 
438*e0c4386eSCy Schubert typedef enum OPTION_choice {
439*e0c4386eSCy Schubert     OPT_ERR = -1,
440*e0c4386eSCy Schubert     OPT_EOF = 0,
441*e0c4386eSCy Schubert     OPT_PRINT,
442*e0c4386eSCy Schubert     OPT_TEST_ENUM
443*e0c4386eSCy Schubert } OPTION_CHOICE;
444*e0c4386eSCy Schubert 
test_get_options(void)445*e0c4386eSCy Schubert const OPTIONS *test_get_options(void)
446*e0c4386eSCy Schubert {
447*e0c4386eSCy Schubert     static const OPTIONS test_options[] = {
448*e0c4386eSCy Schubert         OPT_TEST_OPTIONS_DEFAULT_USAGE,
449*e0c4386eSCy Schubert         { "print", OPT_PRINT, '-', "Output test tables instead of running tests"},
450*e0c4386eSCy Schubert         { NULL }
451*e0c4386eSCy Schubert     };
452*e0c4386eSCy Schubert     return test_options;
453*e0c4386eSCy Schubert }
454*e0c4386eSCy Schubert 
setup_tests(void)455*e0c4386eSCy Schubert int setup_tests(void)
456*e0c4386eSCy Schubert {
457*e0c4386eSCy Schubert #ifndef OPENSSL_NO_BF
458*e0c4386eSCy Schubert     OPTION_CHOICE o;
459*e0c4386eSCy Schubert # ifdef CHARSET_EBCDIC
460*e0c4386eSCy Schubert     int n;
461*e0c4386eSCy Schubert     ebcdic2ascii(cbc_data, cbc_data, strlen(cbc_data));
462*e0c4386eSCy Schubert     for (n = 0; n < 2; n++) {
463*e0c4386eSCy Schubert         ebcdic2ascii(bf_key[n], bf_key[n], strlen(bf_key[n]));
464*e0c4386eSCy Schubert     }
465*e0c4386eSCy Schubert # endif
466*e0c4386eSCy Schubert 
467*e0c4386eSCy Schubert     while ((o = opt_next()) != OPT_EOF) {
468*e0c4386eSCy Schubert         switch(o) {
469*e0c4386eSCy Schubert         case OPT_PRINT:
470*e0c4386eSCy Schubert             print_test_data();
471*e0c4386eSCy Schubert             return 1;
472*e0c4386eSCy Schubert         case OPT_TEST_CASES:
473*e0c4386eSCy Schubert             break;
474*e0c4386eSCy Schubert         default:
475*e0c4386eSCy Schubert            return 0;
476*e0c4386eSCy Schubert         }
477*e0c4386eSCy Schubert     }
478*e0c4386eSCy Schubert 
479*e0c4386eSCy Schubert     ADD_ALL_TESTS(test_bf_ecb_raw, 2);
480*e0c4386eSCy Schubert     ADD_ALL_TESTS(test_bf_ecb, NUM_TESTS);
481*e0c4386eSCy Schubert     ADD_ALL_TESTS(test_bf_set_key, KEY_TEST_NUM-1);
482*e0c4386eSCy Schubert     ADD_TEST(test_bf_cbc);
483*e0c4386eSCy Schubert     ADD_TEST(test_bf_cfb64);
484*e0c4386eSCy Schubert     ADD_TEST(test_bf_ofb64);
485*e0c4386eSCy Schubert #endif
486*e0c4386eSCy Schubert     return 1;
487*e0c4386eSCy Schubert }
488