1*0Sstevel@tonic-gate /* crypto/bf/bftest.c */ 2*0Sstevel@tonic-gate /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3*0Sstevel@tonic-gate * All rights reserved. 4*0Sstevel@tonic-gate * 5*0Sstevel@tonic-gate * This package is an SSL implementation written 6*0Sstevel@tonic-gate * by Eric Young (eay@cryptsoft.com). 7*0Sstevel@tonic-gate * The implementation was written so as to conform with Netscapes SSL. 8*0Sstevel@tonic-gate * 9*0Sstevel@tonic-gate * This library is free for commercial and non-commercial use as long as 10*0Sstevel@tonic-gate * the following conditions are aheared to. The following conditions 11*0Sstevel@tonic-gate * apply to all code found in this distribution, be it the RC4, RSA, 12*0Sstevel@tonic-gate * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13*0Sstevel@tonic-gate * included with this distribution is covered by the same copyright terms 14*0Sstevel@tonic-gate * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15*0Sstevel@tonic-gate * 16*0Sstevel@tonic-gate * Copyright remains Eric Young's, and as such any Copyright notices in 17*0Sstevel@tonic-gate * the code are not to be removed. 18*0Sstevel@tonic-gate * If this package is used in a product, Eric Young should be given attribution 19*0Sstevel@tonic-gate * as the author of the parts of the library used. 20*0Sstevel@tonic-gate * This can be in the form of a textual message at program startup or 21*0Sstevel@tonic-gate * in documentation (online or textual) provided with the package. 22*0Sstevel@tonic-gate * 23*0Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without 24*0Sstevel@tonic-gate * modification, are permitted provided that the following conditions 25*0Sstevel@tonic-gate * are met: 26*0Sstevel@tonic-gate * 1. Redistributions of source code must retain the copyright 27*0Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer. 28*0Sstevel@tonic-gate * 2. Redistributions in binary form must reproduce the above copyright 29*0Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer in the 30*0Sstevel@tonic-gate * documentation and/or other materials provided with the distribution. 31*0Sstevel@tonic-gate * 3. All advertising materials mentioning features or use of this software 32*0Sstevel@tonic-gate * must display the following acknowledgement: 33*0Sstevel@tonic-gate * "This product includes cryptographic software written by 34*0Sstevel@tonic-gate * Eric Young (eay@cryptsoft.com)" 35*0Sstevel@tonic-gate * The word 'cryptographic' can be left out if the rouines from the library 36*0Sstevel@tonic-gate * being used are not cryptographic related :-). 37*0Sstevel@tonic-gate * 4. If you include any Windows specific code (or a derivative thereof) from 38*0Sstevel@tonic-gate * the apps directory (application code) you must include an acknowledgement: 39*0Sstevel@tonic-gate * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40*0Sstevel@tonic-gate * 41*0Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42*0Sstevel@tonic-gate * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43*0Sstevel@tonic-gate * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44*0Sstevel@tonic-gate * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45*0Sstevel@tonic-gate * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46*0Sstevel@tonic-gate * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47*0Sstevel@tonic-gate * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48*0Sstevel@tonic-gate * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49*0Sstevel@tonic-gate * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50*0Sstevel@tonic-gate * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51*0Sstevel@tonic-gate * SUCH DAMAGE. 52*0Sstevel@tonic-gate * 53*0Sstevel@tonic-gate * The licence and distribution terms for any publically available version or 54*0Sstevel@tonic-gate * derivative of this code cannot be changed. i.e. this code cannot simply be 55*0Sstevel@tonic-gate * copied and put under another distribution licence 56*0Sstevel@tonic-gate * [including the GNU Public Licence.] 57*0Sstevel@tonic-gate */ 58*0Sstevel@tonic-gate 59*0Sstevel@tonic-gate /* This has been a quickly hacked 'ideatest.c'. When I add tests for other 60*0Sstevel@tonic-gate * RC2 modes, more of the code will be uncommented. */ 61*0Sstevel@tonic-gate 62*0Sstevel@tonic-gate #include <stdio.h> 63*0Sstevel@tonic-gate #include <string.h> 64*0Sstevel@tonic-gate #include <stdlib.h> 65*0Sstevel@tonic-gate 66*0Sstevel@tonic-gate #include "../e_os.h" 67*0Sstevel@tonic-gate 68*0Sstevel@tonic-gate #ifdef OPENSSL_NO_BF 69*0Sstevel@tonic-gate int main(int argc, char *argv[]) 70*0Sstevel@tonic-gate { 71*0Sstevel@tonic-gate printf("No BF support\n"); 72*0Sstevel@tonic-gate return(0); 73*0Sstevel@tonic-gate } 74*0Sstevel@tonic-gate #else 75*0Sstevel@tonic-gate #include <openssl/blowfish.h> 76*0Sstevel@tonic-gate 77*0Sstevel@tonic-gate #ifdef CHARSET_EBCDIC 78*0Sstevel@tonic-gate #include <openssl/ebcdic.h> 79*0Sstevel@tonic-gate #endif 80*0Sstevel@tonic-gate 81*0Sstevel@tonic-gate static char *bf_key[2]={ 82*0Sstevel@tonic-gate "abcdefghijklmnopqrstuvwxyz", 83*0Sstevel@tonic-gate "Who is John Galt?" 84*0Sstevel@tonic-gate }; 85*0Sstevel@tonic-gate 86*0Sstevel@tonic-gate /* big endian */ 87*0Sstevel@tonic-gate static BF_LONG bf_plain[2][2]={ 88*0Sstevel@tonic-gate {0x424c4f57L,0x46495348L}, 89*0Sstevel@tonic-gate {0xfedcba98L,0x76543210L} 90*0Sstevel@tonic-gate }; 91*0Sstevel@tonic-gate 92*0Sstevel@tonic-gate static BF_LONG bf_cipher[2][2]={ 93*0Sstevel@tonic-gate {0x324ed0feL,0xf413a203L}, 94*0Sstevel@tonic-gate {0xcc91732bL,0x8022f684L} 95*0Sstevel@tonic-gate }; 96*0Sstevel@tonic-gate /************/ 97*0Sstevel@tonic-gate 98*0Sstevel@tonic-gate /* Lets use the DES test vectors :-) */ 99*0Sstevel@tonic-gate #define NUM_TESTS 34 100*0Sstevel@tonic-gate static unsigned char ecb_data[NUM_TESTS][8]={ 101*0Sstevel@tonic-gate {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, 102*0Sstevel@tonic-gate {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}, 103*0Sstevel@tonic-gate {0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, 104*0Sstevel@tonic-gate {0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11}, 105*0Sstevel@tonic-gate {0x01,0x23,0x45,0x67,0x89,0xAB,0xCD,0xEF}, 106*0Sstevel@tonic-gate {0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11}, 107*0Sstevel@tonic-gate {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, 108*0Sstevel@tonic-gate {0xFE,0xDC,0xBA,0x98,0x76,0x54,0x32,0x10}, 109*0Sstevel@tonic-gate {0x7C,0xA1,0x10,0x45,0x4A,0x1A,0x6E,0x57}, 110*0Sstevel@tonic-gate {0x01,0x31,0xD9,0x61,0x9D,0xC1,0x37,0x6E}, 111*0Sstevel@tonic-gate {0x07,0xA1,0x13,0x3E,0x4A,0x0B,0x26,0x86}, 112*0Sstevel@tonic-gate {0x38,0x49,0x67,0x4C,0x26,0x02,0x31,0x9E}, 113*0Sstevel@tonic-gate {0x04,0xB9,0x15,0xBA,0x43,0xFE,0xB5,0xB6}, 114*0Sstevel@tonic-gate {0x01,0x13,0xB9,0x70,0xFD,0x34,0xF2,0xCE}, 115*0Sstevel@tonic-gate {0x01,0x70,0xF1,0x75,0x46,0x8F,0xB5,0xE6}, 116*0Sstevel@tonic-gate {0x43,0x29,0x7F,0xAD,0x38,0xE3,0x73,0xFE}, 117*0Sstevel@tonic-gate {0x07,0xA7,0x13,0x70,0x45,0xDA,0x2A,0x16}, 118*0Sstevel@tonic-gate {0x04,0x68,0x91,0x04,0xC2,0xFD,0x3B,0x2F}, 119*0Sstevel@tonic-gate {0x37,0xD0,0x6B,0xB5,0x16,0xCB,0x75,0x46}, 120*0Sstevel@tonic-gate {0x1F,0x08,0x26,0x0D,0x1A,0xC2,0x46,0x5E}, 121*0Sstevel@tonic-gate {0x58,0x40,0x23,0x64,0x1A,0xBA,0x61,0x76}, 122*0Sstevel@tonic-gate {0x02,0x58,0x16,0x16,0x46,0x29,0xB0,0x07}, 123*0Sstevel@tonic-gate {0x49,0x79,0x3E,0xBC,0x79,0xB3,0x25,0x8F}, 124*0Sstevel@tonic-gate {0x4F,0xB0,0x5E,0x15,0x15,0xAB,0x73,0xA7}, 125*0Sstevel@tonic-gate {0x49,0xE9,0x5D,0x6D,0x4C,0xA2,0x29,0xBF}, 126*0Sstevel@tonic-gate {0x01,0x83,0x10,0xDC,0x40,0x9B,0x26,0xD6}, 127*0Sstevel@tonic-gate {0x1C,0x58,0x7F,0x1C,0x13,0x92,0x4F,0xEF}, 128*0Sstevel@tonic-gate {0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01}, 129*0Sstevel@tonic-gate {0x1F,0x1F,0x1F,0x1F,0x0E,0x0E,0x0E,0x0E}, 130*0Sstevel@tonic-gate {0xE0,0xFE,0xE0,0xFE,0xF1,0xFE,0xF1,0xFE}, 131*0Sstevel@tonic-gate {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, 132*0Sstevel@tonic-gate {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}, 133*0Sstevel@tonic-gate {0x01,0x23,0x45,0x67,0x89,0xAB,0xCD,0xEF}, 134*0Sstevel@tonic-gate {0xFE,0xDC,0xBA,0x98,0x76,0x54,0x32,0x10}}; 135*0Sstevel@tonic-gate 136*0Sstevel@tonic-gate static unsigned char plain_data[NUM_TESTS][8]={ 137*0Sstevel@tonic-gate {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, 138*0Sstevel@tonic-gate {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}, 139*0Sstevel@tonic-gate {0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x01}, 140*0Sstevel@tonic-gate {0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11}, 141*0Sstevel@tonic-gate {0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11}, 142*0Sstevel@tonic-gate {0x01,0x23,0x45,0x67,0x89,0xAB,0xCD,0xEF}, 143*0Sstevel@tonic-gate {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, 144*0Sstevel@tonic-gate {0x01,0x23,0x45,0x67,0x89,0xAB,0xCD,0xEF}, 145*0Sstevel@tonic-gate {0x01,0xA1,0xD6,0xD0,0x39,0x77,0x67,0x42}, 146*0Sstevel@tonic-gate {0x5C,0xD5,0x4C,0xA8,0x3D,0xEF,0x57,0xDA}, 147*0Sstevel@tonic-gate {0x02,0x48,0xD4,0x38,0x06,0xF6,0x71,0x72}, 148*0Sstevel@tonic-gate {0x51,0x45,0x4B,0x58,0x2D,0xDF,0x44,0x0A}, 149*0Sstevel@tonic-gate {0x42,0xFD,0x44,0x30,0x59,0x57,0x7F,0xA2}, 150*0Sstevel@tonic-gate {0x05,0x9B,0x5E,0x08,0x51,0xCF,0x14,0x3A}, 151*0Sstevel@tonic-gate {0x07,0x56,0xD8,0xE0,0x77,0x47,0x61,0xD2}, 152*0Sstevel@tonic-gate {0x76,0x25,0x14,0xB8,0x29,0xBF,0x48,0x6A}, 153*0Sstevel@tonic-gate {0x3B,0xDD,0x11,0x90,0x49,0x37,0x28,0x02}, 154*0Sstevel@tonic-gate {0x26,0x95,0x5F,0x68,0x35,0xAF,0x60,0x9A}, 155*0Sstevel@tonic-gate {0x16,0x4D,0x5E,0x40,0x4F,0x27,0x52,0x32}, 156*0Sstevel@tonic-gate {0x6B,0x05,0x6E,0x18,0x75,0x9F,0x5C,0xCA}, 157*0Sstevel@tonic-gate {0x00,0x4B,0xD6,0xEF,0x09,0x17,0x60,0x62}, 158*0Sstevel@tonic-gate {0x48,0x0D,0x39,0x00,0x6E,0xE7,0x62,0xF2}, 159*0Sstevel@tonic-gate {0x43,0x75,0x40,0xC8,0x69,0x8F,0x3C,0xFA}, 160*0Sstevel@tonic-gate {0x07,0x2D,0x43,0xA0,0x77,0x07,0x52,0x92}, 161*0Sstevel@tonic-gate {0x02,0xFE,0x55,0x77,0x81,0x17,0xF1,0x2A}, 162*0Sstevel@tonic-gate {0x1D,0x9D,0x5C,0x50,0x18,0xF7,0x28,0xC2}, 163*0Sstevel@tonic-gate {0x30,0x55,0x32,0x28,0x6D,0x6F,0x29,0x5A}, 164*0Sstevel@tonic-gate {0x01,0x23,0x45,0x67,0x89,0xAB,0xCD,0xEF}, 165*0Sstevel@tonic-gate {0x01,0x23,0x45,0x67,0x89,0xAB,0xCD,0xEF}, 166*0Sstevel@tonic-gate {0x01,0x23,0x45,0x67,0x89,0xAB,0xCD,0xEF}, 167*0Sstevel@tonic-gate {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}, 168*0Sstevel@tonic-gate {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, 169*0Sstevel@tonic-gate {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, 170*0Sstevel@tonic-gate {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}}; 171*0Sstevel@tonic-gate 172*0Sstevel@tonic-gate static unsigned char cipher_data[NUM_TESTS][8]={ 173*0Sstevel@tonic-gate {0x4E,0xF9,0x97,0x45,0x61,0x98,0xDD,0x78}, 174*0Sstevel@tonic-gate {0x51,0x86,0x6F,0xD5,0xB8,0x5E,0xCB,0x8A}, 175*0Sstevel@tonic-gate {0x7D,0x85,0x6F,0x9A,0x61,0x30,0x63,0xF2}, 176*0Sstevel@tonic-gate {0x24,0x66,0xDD,0x87,0x8B,0x96,0x3C,0x9D}, 177*0Sstevel@tonic-gate {0x61,0xF9,0xC3,0x80,0x22,0x81,0xB0,0x96}, 178*0Sstevel@tonic-gate {0x7D,0x0C,0xC6,0x30,0xAF,0xDA,0x1E,0xC7}, 179*0Sstevel@tonic-gate {0x4E,0xF9,0x97,0x45,0x61,0x98,0xDD,0x78}, 180*0Sstevel@tonic-gate {0x0A,0xCE,0xAB,0x0F,0xC6,0xA0,0xA2,0x8D}, 181*0Sstevel@tonic-gate {0x59,0xC6,0x82,0x45,0xEB,0x05,0x28,0x2B}, 182*0Sstevel@tonic-gate {0xB1,0xB8,0xCC,0x0B,0x25,0x0F,0x09,0xA0}, 183*0Sstevel@tonic-gate {0x17,0x30,0xE5,0x77,0x8B,0xEA,0x1D,0xA4}, 184*0Sstevel@tonic-gate {0xA2,0x5E,0x78,0x56,0xCF,0x26,0x51,0xEB}, 185*0Sstevel@tonic-gate {0x35,0x38,0x82,0xB1,0x09,0xCE,0x8F,0x1A}, 186*0Sstevel@tonic-gate {0x48,0xF4,0xD0,0x88,0x4C,0x37,0x99,0x18}, 187*0Sstevel@tonic-gate {0x43,0x21,0x93,0xB7,0x89,0x51,0xFC,0x98}, 188*0Sstevel@tonic-gate {0x13,0xF0,0x41,0x54,0xD6,0x9D,0x1A,0xE5}, 189*0Sstevel@tonic-gate {0x2E,0xED,0xDA,0x93,0xFF,0xD3,0x9C,0x79}, 190*0Sstevel@tonic-gate {0xD8,0x87,0xE0,0x39,0x3C,0x2D,0xA6,0xE3}, 191*0Sstevel@tonic-gate {0x5F,0x99,0xD0,0x4F,0x5B,0x16,0x39,0x69}, 192*0Sstevel@tonic-gate {0x4A,0x05,0x7A,0x3B,0x24,0xD3,0x97,0x7B}, 193*0Sstevel@tonic-gate {0x45,0x20,0x31,0xC1,0xE4,0xFA,0xDA,0x8E}, 194*0Sstevel@tonic-gate {0x75,0x55,0xAE,0x39,0xF5,0x9B,0x87,0xBD}, 195*0Sstevel@tonic-gate {0x53,0xC5,0x5F,0x9C,0xB4,0x9F,0xC0,0x19}, 196*0Sstevel@tonic-gate {0x7A,0x8E,0x7B,0xFA,0x93,0x7E,0x89,0xA3}, 197*0Sstevel@tonic-gate {0xCF,0x9C,0x5D,0x7A,0x49,0x86,0xAD,0xB5}, 198*0Sstevel@tonic-gate {0xD1,0xAB,0xB2,0x90,0x65,0x8B,0xC7,0x78}, 199*0Sstevel@tonic-gate {0x55,0xCB,0x37,0x74,0xD1,0x3E,0xF2,0x01}, 200*0Sstevel@tonic-gate {0xFA,0x34,0xEC,0x48,0x47,0xB2,0x68,0xB2}, 201*0Sstevel@tonic-gate {0xA7,0x90,0x79,0x51,0x08,0xEA,0x3C,0xAE}, 202*0Sstevel@tonic-gate {0xC3,0x9E,0x07,0x2D,0x9F,0xAC,0x63,0x1D}, 203*0Sstevel@tonic-gate {0x01,0x49,0x33,0xE0,0xCD,0xAF,0xF6,0xE4}, 204*0Sstevel@tonic-gate {0xF2,0x1E,0x9A,0x77,0xB7,0x1C,0x49,0xBC}, 205*0Sstevel@tonic-gate {0x24,0x59,0x46,0x88,0x57,0x54,0x36,0x9A}, 206*0Sstevel@tonic-gate {0x6B,0x5C,0x5A,0x9C,0x5D,0x9E,0x0A,0x5A}, 207*0Sstevel@tonic-gate }; 208*0Sstevel@tonic-gate 209*0Sstevel@tonic-gate static unsigned char cbc_key [16]={ 210*0Sstevel@tonic-gate 0x01,0x23,0x45,0x67,0x89,0xab,0xcd,0xef, 211*0Sstevel@tonic-gate 0xf0,0xe1,0xd2,0xc3,0xb4,0xa5,0x96,0x87}; 212*0Sstevel@tonic-gate static unsigned char cbc_iv [8]={0xfe,0xdc,0xba,0x98,0x76,0x54,0x32,0x10}; 213*0Sstevel@tonic-gate static char cbc_data[40]="7654321 Now is the time for "; 214*0Sstevel@tonic-gate static unsigned char cbc_ok[32]={ 215*0Sstevel@tonic-gate 0x6B,0x77,0xB4,0xD6,0x30,0x06,0xDE,0xE6, 216*0Sstevel@tonic-gate 0x05,0xB1,0x56,0xE2,0x74,0x03,0x97,0x93, 217*0Sstevel@tonic-gate 0x58,0xDE,0xB9,0xE7,0x15,0x46,0x16,0xD9, 218*0Sstevel@tonic-gate 0x59,0xF1,0x65,0x2B,0xD5,0xFF,0x92,0xCC}; 219*0Sstevel@tonic-gate 220*0Sstevel@tonic-gate static unsigned char cfb64_ok[]={ 221*0Sstevel@tonic-gate 0xE7,0x32,0x14,0xA2,0x82,0x21,0x39,0xCA, 222*0Sstevel@tonic-gate 0xF2,0x6E,0xCF,0x6D,0x2E,0xB9,0xE7,0x6E, 223*0Sstevel@tonic-gate 0x3D,0xA3,0xDE,0x04,0xD1,0x51,0x72,0x00, 224*0Sstevel@tonic-gate 0x51,0x9D,0x57,0xA6,0xC3}; 225*0Sstevel@tonic-gate 226*0Sstevel@tonic-gate static unsigned char ofb64_ok[]={ 227*0Sstevel@tonic-gate 0xE7,0x32,0x14,0xA2,0x82,0x21,0x39,0xCA, 228*0Sstevel@tonic-gate 0x62,0xB3,0x43,0xCC,0x5B,0x65,0x58,0x73, 229*0Sstevel@tonic-gate 0x10,0xDD,0x90,0x8D,0x0C,0x24,0x1B,0x22, 230*0Sstevel@tonic-gate 0x63,0xC2,0xCF,0x80,0xDA}; 231*0Sstevel@tonic-gate 232*0Sstevel@tonic-gate #define KEY_TEST_NUM 25 233*0Sstevel@tonic-gate static unsigned char key_test[KEY_TEST_NUM]={ 234*0Sstevel@tonic-gate 0xf0,0xe1,0xd2,0xc3,0xb4,0xa5,0x96,0x87, 235*0Sstevel@tonic-gate 0x78,0x69,0x5a,0x4b,0x3c,0x2d,0x1e,0x0f, 236*0Sstevel@tonic-gate 0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77, 237*0Sstevel@tonic-gate 0x88}; 238*0Sstevel@tonic-gate 239*0Sstevel@tonic-gate static unsigned char key_data[8]= 240*0Sstevel@tonic-gate {0xFE,0xDC,0xBA,0x98,0x76,0x54,0x32,0x10}; 241*0Sstevel@tonic-gate 242*0Sstevel@tonic-gate static unsigned char key_out[KEY_TEST_NUM][8]={ 243*0Sstevel@tonic-gate {0xF9,0xAD,0x59,0x7C,0x49,0xDB,0x00,0x5E}, 244*0Sstevel@tonic-gate {0xE9,0x1D,0x21,0xC1,0xD9,0x61,0xA6,0xD6}, 245*0Sstevel@tonic-gate {0xE9,0xC2,0xB7,0x0A,0x1B,0xC6,0x5C,0xF3}, 246*0Sstevel@tonic-gate {0xBE,0x1E,0x63,0x94,0x08,0x64,0x0F,0x05}, 247*0Sstevel@tonic-gate {0xB3,0x9E,0x44,0x48,0x1B,0xDB,0x1E,0x6E}, 248*0Sstevel@tonic-gate {0x94,0x57,0xAA,0x83,0xB1,0x92,0x8C,0x0D}, 249*0Sstevel@tonic-gate {0x8B,0xB7,0x70,0x32,0xF9,0x60,0x62,0x9D}, 250*0Sstevel@tonic-gate {0xE8,0x7A,0x24,0x4E,0x2C,0xC8,0x5E,0x82}, 251*0Sstevel@tonic-gate {0x15,0x75,0x0E,0x7A,0x4F,0x4E,0xC5,0x77}, 252*0Sstevel@tonic-gate {0x12,0x2B,0xA7,0x0B,0x3A,0xB6,0x4A,0xE0}, 253*0Sstevel@tonic-gate {0x3A,0x83,0x3C,0x9A,0xFF,0xC5,0x37,0xF6}, 254*0Sstevel@tonic-gate {0x94,0x09,0xDA,0x87,0xA9,0x0F,0x6B,0xF2}, 255*0Sstevel@tonic-gate {0x88,0x4F,0x80,0x62,0x50,0x60,0xB8,0xB4}, 256*0Sstevel@tonic-gate {0x1F,0x85,0x03,0x1C,0x19,0xE1,0x19,0x68}, 257*0Sstevel@tonic-gate {0x79,0xD9,0x37,0x3A,0x71,0x4C,0xA3,0x4F}, 258*0Sstevel@tonic-gate {0x93,0x14,0x28,0x87,0xEE,0x3B,0xE1,0x5C}, 259*0Sstevel@tonic-gate {0x03,0x42,0x9E,0x83,0x8C,0xE2,0xD1,0x4B}, 260*0Sstevel@tonic-gate {0xA4,0x29,0x9E,0x27,0x46,0x9F,0xF6,0x7B}, 261*0Sstevel@tonic-gate {0xAF,0xD5,0xAE,0xD1,0xC1,0xBC,0x96,0xA8}, 262*0Sstevel@tonic-gate {0x10,0x85,0x1C,0x0E,0x38,0x58,0xDA,0x9F}, 263*0Sstevel@tonic-gate {0xE6,0xF5,0x1E,0xD7,0x9B,0x9D,0xB2,0x1F}, 264*0Sstevel@tonic-gate {0x64,0xA6,0xE1,0x4A,0xFD,0x36,0xB4,0x6F}, 265*0Sstevel@tonic-gate {0x80,0xC7,0xD7,0xD4,0x5A,0x54,0x79,0xAD}, 266*0Sstevel@tonic-gate {0x05,0x04,0x4B,0x62,0xFA,0x52,0xD0,0x80}, 267*0Sstevel@tonic-gate }; 268*0Sstevel@tonic-gate 269*0Sstevel@tonic-gate static int test(void ); 270*0Sstevel@tonic-gate static int print_test_data(void ); 271*0Sstevel@tonic-gate int main(int argc, char *argv[]) 272*0Sstevel@tonic-gate { 273*0Sstevel@tonic-gate int ret; 274*0Sstevel@tonic-gate 275*0Sstevel@tonic-gate if (argc > 1) 276*0Sstevel@tonic-gate ret=print_test_data(); 277*0Sstevel@tonic-gate else 278*0Sstevel@tonic-gate ret=test(); 279*0Sstevel@tonic-gate 280*0Sstevel@tonic-gate EXIT(ret); 281*0Sstevel@tonic-gate return(0); 282*0Sstevel@tonic-gate } 283*0Sstevel@tonic-gate 284*0Sstevel@tonic-gate static int print_test_data(void) 285*0Sstevel@tonic-gate { 286*0Sstevel@tonic-gate unsigned int i,j; 287*0Sstevel@tonic-gate 288*0Sstevel@tonic-gate printf("ecb test data\n"); 289*0Sstevel@tonic-gate printf("key bytes\t\tclear bytes\t\tcipher bytes\n"); 290*0Sstevel@tonic-gate for (i=0; i<NUM_TESTS; i++) 291*0Sstevel@tonic-gate { 292*0Sstevel@tonic-gate for (j=0; j<8; j++) 293*0Sstevel@tonic-gate printf("%02X",ecb_data[i][j]); 294*0Sstevel@tonic-gate printf("\t"); 295*0Sstevel@tonic-gate for (j=0; j<8; j++) 296*0Sstevel@tonic-gate printf("%02X",plain_data[i][j]); 297*0Sstevel@tonic-gate printf("\t"); 298*0Sstevel@tonic-gate for (j=0; j<8; j++) 299*0Sstevel@tonic-gate printf("%02X",cipher_data[i][j]); 300*0Sstevel@tonic-gate printf("\n"); 301*0Sstevel@tonic-gate } 302*0Sstevel@tonic-gate 303*0Sstevel@tonic-gate printf("set_key test data\n"); 304*0Sstevel@tonic-gate printf("data[8]= "); 305*0Sstevel@tonic-gate for (j=0; j<8; j++) 306*0Sstevel@tonic-gate printf("%02X",key_data[j]); 307*0Sstevel@tonic-gate printf("\n"); 308*0Sstevel@tonic-gate for (i=0; i<KEY_TEST_NUM-1; i++) 309*0Sstevel@tonic-gate { 310*0Sstevel@tonic-gate printf("c="); 311*0Sstevel@tonic-gate for (j=0; j<8; j++) 312*0Sstevel@tonic-gate printf("%02X",key_out[i][j]); 313*0Sstevel@tonic-gate printf(" k[%2u]=",i+1); 314*0Sstevel@tonic-gate for (j=0; j<i+1; j++) 315*0Sstevel@tonic-gate printf("%02X",key_test[j]); 316*0Sstevel@tonic-gate printf("\n"); 317*0Sstevel@tonic-gate } 318*0Sstevel@tonic-gate 319*0Sstevel@tonic-gate printf("\nchaining mode test data\n"); 320*0Sstevel@tonic-gate printf("key[16] = "); 321*0Sstevel@tonic-gate for (j=0; j<16; j++) 322*0Sstevel@tonic-gate printf("%02X",cbc_key[j]); 323*0Sstevel@tonic-gate printf("\niv[8] = "); 324*0Sstevel@tonic-gate for (j=0; j<8; j++) 325*0Sstevel@tonic-gate printf("%02X",cbc_iv[j]); 326*0Sstevel@tonic-gate printf("\ndata[%d] = '%s'",(int)strlen(cbc_data)+1,cbc_data); 327*0Sstevel@tonic-gate printf("\ndata[%d] = ",(int)strlen(cbc_data)+1); 328*0Sstevel@tonic-gate for (j=0; j<strlen(cbc_data)+1; j++) 329*0Sstevel@tonic-gate printf("%02X",cbc_data[j]); 330*0Sstevel@tonic-gate printf("\n"); 331*0Sstevel@tonic-gate printf("cbc cipher text\n"); 332*0Sstevel@tonic-gate printf("cipher[%d]= ",32); 333*0Sstevel@tonic-gate for (j=0; j<32; j++) 334*0Sstevel@tonic-gate printf("%02X",cbc_ok[j]); 335*0Sstevel@tonic-gate printf("\n"); 336*0Sstevel@tonic-gate 337*0Sstevel@tonic-gate printf("cfb64 cipher text\n"); 338*0Sstevel@tonic-gate printf("cipher[%d]= ",(int)strlen(cbc_data)+1); 339*0Sstevel@tonic-gate for (j=0; j<strlen(cbc_data)+1; j++) 340*0Sstevel@tonic-gate printf("%02X",cfb64_ok[j]); 341*0Sstevel@tonic-gate printf("\n"); 342*0Sstevel@tonic-gate 343*0Sstevel@tonic-gate printf("ofb64 cipher text\n"); 344*0Sstevel@tonic-gate printf("cipher[%d]= ",(int)strlen(cbc_data)+1); 345*0Sstevel@tonic-gate for (j=0; j<strlen(cbc_data)+1; j++) 346*0Sstevel@tonic-gate printf("%02X",ofb64_ok[j]); 347*0Sstevel@tonic-gate printf("\n"); 348*0Sstevel@tonic-gate return(0); 349*0Sstevel@tonic-gate } 350*0Sstevel@tonic-gate 351*0Sstevel@tonic-gate static int test(void) 352*0Sstevel@tonic-gate { 353*0Sstevel@tonic-gate unsigned char cbc_in[40],cbc_out[40],iv[8]; 354*0Sstevel@tonic-gate int i,n,err=0; 355*0Sstevel@tonic-gate BF_KEY key; 356*0Sstevel@tonic-gate BF_LONG data[2]; 357*0Sstevel@tonic-gate unsigned char out[8]; 358*0Sstevel@tonic-gate BF_LONG len; 359*0Sstevel@tonic-gate 360*0Sstevel@tonic-gate #ifdef CHARSET_EBCDIC 361*0Sstevel@tonic-gate ebcdic2ascii(cbc_data, cbc_data, strlen(cbc_data)); 362*0Sstevel@tonic-gate #endif 363*0Sstevel@tonic-gate 364*0Sstevel@tonic-gate printf("testing blowfish in raw ecb mode\n"); 365*0Sstevel@tonic-gate for (n=0; n<2; n++) 366*0Sstevel@tonic-gate { 367*0Sstevel@tonic-gate #ifdef CHARSET_EBCDIC 368*0Sstevel@tonic-gate ebcdic2ascii(bf_key[n], bf_key[n], strlen(bf_key[n])); 369*0Sstevel@tonic-gate #endif 370*0Sstevel@tonic-gate BF_set_key(&key,strlen(bf_key[n]),(unsigned char *)bf_key[n]); 371*0Sstevel@tonic-gate 372*0Sstevel@tonic-gate data[0]=bf_plain[n][0]; 373*0Sstevel@tonic-gate data[1]=bf_plain[n][1]; 374*0Sstevel@tonic-gate BF_encrypt(data,&key); 375*0Sstevel@tonic-gate if (memcmp(&(bf_cipher[n][0]),&(data[0]),8) != 0) 376*0Sstevel@tonic-gate { 377*0Sstevel@tonic-gate printf("BF_encrypt error encrypting\n"); 378*0Sstevel@tonic-gate printf("got :"); 379*0Sstevel@tonic-gate for (i=0; i<2; i++) 380*0Sstevel@tonic-gate printf("%08lX ",(unsigned long)data[i]); 381*0Sstevel@tonic-gate printf("\n"); 382*0Sstevel@tonic-gate printf("expected:"); 383*0Sstevel@tonic-gate for (i=0; i<2; i++) 384*0Sstevel@tonic-gate printf("%08lX ",(unsigned long)bf_cipher[n][i]); 385*0Sstevel@tonic-gate err=1; 386*0Sstevel@tonic-gate printf("\n"); 387*0Sstevel@tonic-gate } 388*0Sstevel@tonic-gate 389*0Sstevel@tonic-gate BF_decrypt(&(data[0]),&key); 390*0Sstevel@tonic-gate if (memcmp(&(bf_plain[n][0]),&(data[0]),8) != 0) 391*0Sstevel@tonic-gate { 392*0Sstevel@tonic-gate printf("BF_encrypt error decrypting\n"); 393*0Sstevel@tonic-gate printf("got :"); 394*0Sstevel@tonic-gate for (i=0; i<2; i++) 395*0Sstevel@tonic-gate printf("%08lX ",(unsigned long)data[i]); 396*0Sstevel@tonic-gate printf("\n"); 397*0Sstevel@tonic-gate printf("expected:"); 398*0Sstevel@tonic-gate for (i=0; i<2; i++) 399*0Sstevel@tonic-gate printf("%08lX ",(unsigned long)bf_plain[n][i]); 400*0Sstevel@tonic-gate printf("\n"); 401*0Sstevel@tonic-gate err=1; 402*0Sstevel@tonic-gate } 403*0Sstevel@tonic-gate } 404*0Sstevel@tonic-gate 405*0Sstevel@tonic-gate printf("testing blowfish in ecb mode\n"); 406*0Sstevel@tonic-gate 407*0Sstevel@tonic-gate for (n=0; n<NUM_TESTS; n++) 408*0Sstevel@tonic-gate { 409*0Sstevel@tonic-gate BF_set_key(&key,8,ecb_data[n]); 410*0Sstevel@tonic-gate 411*0Sstevel@tonic-gate BF_ecb_encrypt(&(plain_data[n][0]),out,&key,BF_ENCRYPT); 412*0Sstevel@tonic-gate if (memcmp(&(cipher_data[n][0]),out,8) != 0) 413*0Sstevel@tonic-gate { 414*0Sstevel@tonic-gate printf("BF_ecb_encrypt blowfish error encrypting\n"); 415*0Sstevel@tonic-gate printf("got :"); 416*0Sstevel@tonic-gate for (i=0; i<8; i++) 417*0Sstevel@tonic-gate printf("%02X ",out[i]); 418*0Sstevel@tonic-gate printf("\n"); 419*0Sstevel@tonic-gate printf("expected:"); 420*0Sstevel@tonic-gate for (i=0; i<8; i++) 421*0Sstevel@tonic-gate printf("%02X ",cipher_data[n][i]); 422*0Sstevel@tonic-gate err=1; 423*0Sstevel@tonic-gate printf("\n"); 424*0Sstevel@tonic-gate } 425*0Sstevel@tonic-gate 426*0Sstevel@tonic-gate BF_ecb_encrypt(out,out,&key,BF_DECRYPT); 427*0Sstevel@tonic-gate if (memcmp(&(plain_data[n][0]),out,8) != 0) 428*0Sstevel@tonic-gate { 429*0Sstevel@tonic-gate printf("BF_ecb_encrypt error decrypting\n"); 430*0Sstevel@tonic-gate printf("got :"); 431*0Sstevel@tonic-gate for (i=0; i<8; i++) 432*0Sstevel@tonic-gate printf("%02X ",out[i]); 433*0Sstevel@tonic-gate printf("\n"); 434*0Sstevel@tonic-gate printf("expected:"); 435*0Sstevel@tonic-gate for (i=0; i<8; i++) 436*0Sstevel@tonic-gate printf("%02X ",plain_data[n][i]); 437*0Sstevel@tonic-gate printf("\n"); 438*0Sstevel@tonic-gate err=1; 439*0Sstevel@tonic-gate } 440*0Sstevel@tonic-gate } 441*0Sstevel@tonic-gate 442*0Sstevel@tonic-gate printf("testing blowfish set_key\n"); 443*0Sstevel@tonic-gate for (n=1; n<KEY_TEST_NUM; n++) 444*0Sstevel@tonic-gate { 445*0Sstevel@tonic-gate BF_set_key(&key,n,key_test); 446*0Sstevel@tonic-gate BF_ecb_encrypt(key_data,out,&key,BF_ENCRYPT); 447*0Sstevel@tonic-gate /* mips-sgi-irix6.5-gcc vv -mabi=64 bug workaround */ 448*0Sstevel@tonic-gate if (memcmp(out,&(key_out[i=n-1][0]),8) != 0) 449*0Sstevel@tonic-gate { 450*0Sstevel@tonic-gate printf("blowfish setkey error\n"); 451*0Sstevel@tonic-gate err=1; 452*0Sstevel@tonic-gate } 453*0Sstevel@tonic-gate } 454*0Sstevel@tonic-gate 455*0Sstevel@tonic-gate printf("testing blowfish in cbc mode\n"); 456*0Sstevel@tonic-gate len=strlen(cbc_data)+1; 457*0Sstevel@tonic-gate 458*0Sstevel@tonic-gate BF_set_key(&key,16,cbc_key); 459*0Sstevel@tonic-gate memset(cbc_in,0,sizeof cbc_in); 460*0Sstevel@tonic-gate memset(cbc_out,0,sizeof cbc_out); 461*0Sstevel@tonic-gate memcpy(iv,cbc_iv,sizeof iv); 462*0Sstevel@tonic-gate BF_cbc_encrypt((unsigned char *)cbc_data,cbc_out,len, 463*0Sstevel@tonic-gate &key,iv,BF_ENCRYPT); 464*0Sstevel@tonic-gate if (memcmp(cbc_out,cbc_ok,32) != 0) 465*0Sstevel@tonic-gate { 466*0Sstevel@tonic-gate err=1; 467*0Sstevel@tonic-gate printf("BF_cbc_encrypt encrypt error\n"); 468*0Sstevel@tonic-gate for (i=0; i<32; i++) printf("0x%02X,",cbc_out[i]); 469*0Sstevel@tonic-gate } 470*0Sstevel@tonic-gate memcpy(iv,cbc_iv,8); 471*0Sstevel@tonic-gate BF_cbc_encrypt(cbc_out,cbc_in,len, 472*0Sstevel@tonic-gate &key,iv,BF_DECRYPT); 473*0Sstevel@tonic-gate if (memcmp(cbc_in,cbc_data,strlen(cbc_data)+1) != 0) 474*0Sstevel@tonic-gate { 475*0Sstevel@tonic-gate printf("BF_cbc_encrypt decrypt error\n"); 476*0Sstevel@tonic-gate err=1; 477*0Sstevel@tonic-gate } 478*0Sstevel@tonic-gate 479*0Sstevel@tonic-gate printf("testing blowfish in cfb64 mode\n"); 480*0Sstevel@tonic-gate 481*0Sstevel@tonic-gate BF_set_key(&key,16,cbc_key); 482*0Sstevel@tonic-gate memset(cbc_in,0,40); 483*0Sstevel@tonic-gate memset(cbc_out,0,40); 484*0Sstevel@tonic-gate memcpy(iv,cbc_iv,8); 485*0Sstevel@tonic-gate n=0; 486*0Sstevel@tonic-gate BF_cfb64_encrypt((unsigned char *)cbc_data,cbc_out,(long)13, 487*0Sstevel@tonic-gate &key,iv,&n,BF_ENCRYPT); 488*0Sstevel@tonic-gate BF_cfb64_encrypt((unsigned char *)&(cbc_data[13]),&(cbc_out[13]),len-13, 489*0Sstevel@tonic-gate &key,iv,&n,BF_ENCRYPT); 490*0Sstevel@tonic-gate if (memcmp(cbc_out,cfb64_ok,(int)len) != 0) 491*0Sstevel@tonic-gate { 492*0Sstevel@tonic-gate err=1; 493*0Sstevel@tonic-gate printf("BF_cfb64_encrypt encrypt error\n"); 494*0Sstevel@tonic-gate for (i=0; i<(int)len; i++) printf("0x%02X,",cbc_out[i]); 495*0Sstevel@tonic-gate } 496*0Sstevel@tonic-gate n=0; 497*0Sstevel@tonic-gate memcpy(iv,cbc_iv,8); 498*0Sstevel@tonic-gate BF_cfb64_encrypt(cbc_out,cbc_in,17, 499*0Sstevel@tonic-gate &key,iv,&n,BF_DECRYPT); 500*0Sstevel@tonic-gate BF_cfb64_encrypt(&(cbc_out[17]),&(cbc_in[17]),len-17, 501*0Sstevel@tonic-gate &key,iv,&n,BF_DECRYPT); 502*0Sstevel@tonic-gate if (memcmp(cbc_in,cbc_data,(int)len) != 0) 503*0Sstevel@tonic-gate { 504*0Sstevel@tonic-gate printf("BF_cfb64_encrypt decrypt error\n"); 505*0Sstevel@tonic-gate err=1; 506*0Sstevel@tonic-gate } 507*0Sstevel@tonic-gate 508*0Sstevel@tonic-gate printf("testing blowfish in ofb64\n"); 509*0Sstevel@tonic-gate 510*0Sstevel@tonic-gate BF_set_key(&key,16,cbc_key); 511*0Sstevel@tonic-gate memset(cbc_in,0,40); 512*0Sstevel@tonic-gate memset(cbc_out,0,40); 513*0Sstevel@tonic-gate memcpy(iv,cbc_iv,8); 514*0Sstevel@tonic-gate n=0; 515*0Sstevel@tonic-gate BF_ofb64_encrypt((unsigned char *)cbc_data,cbc_out,(long)13,&key,iv,&n); 516*0Sstevel@tonic-gate BF_ofb64_encrypt((unsigned char *)&(cbc_data[13]), 517*0Sstevel@tonic-gate &(cbc_out[13]),len-13,&key,iv,&n); 518*0Sstevel@tonic-gate if (memcmp(cbc_out,ofb64_ok,(int)len) != 0) 519*0Sstevel@tonic-gate { 520*0Sstevel@tonic-gate err=1; 521*0Sstevel@tonic-gate printf("BF_ofb64_encrypt encrypt error\n"); 522*0Sstevel@tonic-gate for (i=0; i<(int)len; i++) printf("0x%02X,",cbc_out[i]); 523*0Sstevel@tonic-gate } 524*0Sstevel@tonic-gate n=0; 525*0Sstevel@tonic-gate memcpy(iv,cbc_iv,8); 526*0Sstevel@tonic-gate BF_ofb64_encrypt(cbc_out,cbc_in,17,&key,iv,&n); 527*0Sstevel@tonic-gate BF_ofb64_encrypt(&(cbc_out[17]),&(cbc_in[17]),len-17,&key,iv,&n); 528*0Sstevel@tonic-gate if (memcmp(cbc_in,cbc_data,(int)len) != 0) 529*0Sstevel@tonic-gate { 530*0Sstevel@tonic-gate printf("BF_ofb64_encrypt decrypt error\n"); 531*0Sstevel@tonic-gate err=1; 532*0Sstevel@tonic-gate } 533*0Sstevel@tonic-gate 534*0Sstevel@tonic-gate return(err); 535*0Sstevel@tonic-gate } 536*0Sstevel@tonic-gate #endif 537