bf_enc.c revision 1.7
11.1Sthorpej/* crypto/bf/bf_enc.c */ 21.4Stls/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 31.1Sthorpej * All rights reserved. 41.1Sthorpej * 51.1Sthorpej * This package is an SSL implementation written 61.4Stls * by Eric Young (eay@cryptsoft.com). 71.1Sthorpej * The implementation was written so as to conform with Netscapes SSL. 81.1Sthorpej * 91.1Sthorpej * This library is free for commercial and non-commercial use as long as 101.1Sthorpej * the following conditions are aheared to. The following conditions 111.1Sthorpej * apply to all code found in this distribution, be it the RC4, RSA, 121.1Sthorpej * lhash, DES, etc., code; not just the SSL code. The SSL documentation 131.1Sthorpej * included with this distribution is covered by the same copyright terms 141.4Stls * except that the holder is Tim Hudson (tjh@cryptsoft.com). 151.1Sthorpej * 161.1Sthorpej * Copyright remains Eric Young's, and as such any Copyright notices in 171.1Sthorpej * the code are not to be removed. 181.1Sthorpej * If this package is used in a product, Eric Young should be given attribution 191.1Sthorpej * as the author of the parts of the library used. 201.1Sthorpej * This can be in the form of a textual message at program startup or 211.1Sthorpej * in documentation (online or textual) provided with the package. 221.1Sthorpej * 231.1Sthorpej * Redistribution and use in source and binary forms, with or without 241.1Sthorpej * modification, are permitted provided that the following conditions 251.1Sthorpej * are met: 261.1Sthorpej * 1. Redistributions of source code must retain the copyright 271.1Sthorpej * notice, this list of conditions and the following disclaimer. 281.1Sthorpej * 2. Redistributions in binary form must reproduce the above copyright 291.1Sthorpej * notice, this list of conditions and the following disclaimer in the 301.1Sthorpej * documentation and/or other materials provided with the distribution. 311.1Sthorpej * 3. All advertising materials mentioning features or use of this software 321.1Sthorpej * must display the following acknowledgement: 331.1Sthorpej * "This product includes cryptographic software written by 341.4Stls * Eric Young (eay@cryptsoft.com)" 351.1Sthorpej * The word 'cryptographic' can be left out if the rouines from the library 361.1Sthorpej * being used are not cryptographic related :-). 371.1Sthorpej * 4. If you include any Windows specific code (or a derivative thereof) from 381.1Sthorpej * the apps directory (application code) you must include an acknowledgement: 391.4Stls * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 401.1Sthorpej * 411.1Sthorpej * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 421.1Sthorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 431.1Sthorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 441.1Sthorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 451.1Sthorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 461.1Sthorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 471.1Sthorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 481.1Sthorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 491.1Sthorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 501.1Sthorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 511.1Sthorpej * SUCH DAMAGE. 521.1Sthorpej * 531.1Sthorpej * The licence and distribution terms for any publically available version or 541.1Sthorpej * derivative of this code cannot be changed. i.e. this code cannot simply be 551.1Sthorpej * copied and put under another distribution licence 561.1Sthorpej * [including the GNU Public Licence.] 571.1Sthorpej */ 581.1Sthorpej 591.5Slukem#include <sys/cdefs.h> 601.7Sthorpej__KERNEL_RCSID(0, "$NetBSD: bf_enc.c,v 1.7 2003/08/26 23:51:13 thorpej Exp $"); 611.5Slukem 621.2Sitojun#include <sys/types.h> 631.1Sthorpej#include <crypto/blowfish/blowfish.h> 641.1Sthorpej#include <crypto/blowfish/bf_locl.h> 651.1Sthorpej 661.1Sthorpej/* Blowfish as implemented from 'Blowfish: Springer-Verlag paper' 671.1Sthorpej * (From LECTURE NOTES IN COIMPUTER SCIENCE 809, FAST SOFTWARE ENCRYPTION, 681.1Sthorpej * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993) 691.1Sthorpej */ 701.1Sthorpej 711.1Sthorpej#if (BF_ROUNDS != 16) && (BF_ROUNDS != 20) 721.1SthorpejIf you set BF_ROUNDS to some value other than 16 or 20, you will have 731.1Sthorpejto modify the code. 741.1Sthorpej#endif 751.1Sthorpej 761.3Sitojun/* XXX "data" is host endian */ 771.3Sitojunvoid 781.7SthorpejBF_encrypt(BF_LONG *data, const BF_KEY *key) 791.3Sitojun{ 801.3Sitojun register BF_LONG l, r, *p, *s; 811.3Sitojun 821.3Sitojun p = key->P; 831.3Sitojun s= &key->S[0]; 841.3Sitojun l = data[0]; 851.3Sitojun r = data[1]; 861.1Sthorpej 871.6Sitojun l^=p[0]; 881.6Sitojun BF_ENC(r, l, s, p[ 1]); 891.6Sitojun BF_ENC(l, r, s, p[ 2]); 901.6Sitojun BF_ENC(r, l, s, p[ 3]); 911.6Sitojun BF_ENC(l, r, s, p[ 4]); 921.6Sitojun BF_ENC(r, l, s, p[ 5]); 931.6Sitojun BF_ENC(l, r, s, p[ 6]); 941.6Sitojun BF_ENC(r, l, s, p[ 7]); 951.6Sitojun BF_ENC(l, r, s, p[ 8]); 961.6Sitojun BF_ENC(r, l, s, p[ 9]); 971.6Sitojun BF_ENC(l, r, s, p[10]); 981.6Sitojun BF_ENC(r, l, s, p[11]); 991.6Sitojun BF_ENC(l, r, s, p[12]); 1001.6Sitojun BF_ENC(r, l, s, p[13]); 1011.6Sitojun BF_ENC(l, r, s, p[14]); 1021.6Sitojun BF_ENC(r, l, s, p[15]); 1031.6Sitojun BF_ENC(l, r, s, p[16]); 1041.1Sthorpej#if BF_ROUNDS == 20 1051.6Sitojun BF_ENC(r, l, s, p[17]); 1061.6Sitojun BF_ENC(l, r, s, p[18]); 1071.6Sitojun BF_ENC(r, l, s, p[19]); 1081.6Sitojun BF_ENC(l, r, s, p[20]); 1091.1Sthorpej#endif 1101.6Sitojun r ^= p[BF_ROUNDS + 1]; 1111.6Sitojun 1121.6Sitojun data[1] = l & 0xffffffff; 1131.6Sitojun data[0] = r & 0xffffffff; 1141.6Sitojun} 1151.6Sitojun 1161.6Sitojun/* XXX "data" is host endian */ 1171.6Sitojunvoid 1181.7SthorpejBF_decrypt(BF_LONG *data, const BF_KEY *key) 1191.6Sitojun{ 1201.6Sitojun register BF_LONG l, r, *p, *s; 1211.6Sitojun 1221.6Sitojun p = key->P; 1231.6Sitojun s= &key->S[0]; 1241.6Sitojun l = data[0]; 1251.6Sitojun r = data[1]; 1261.6Sitojun 1271.6Sitojun l ^= p[BF_ROUNDS + 1]; 1281.1Sthorpej#if BF_ROUNDS == 20 1291.6Sitojun BF_ENC(r, l, s, p[20]); 1301.6Sitojun BF_ENC(l, r, s, p[19]); 1311.6Sitojun BF_ENC(r, l, s, p[18]); 1321.6Sitojun BF_ENC(l, r, s, p[17]); 1331.1Sthorpej#endif 1341.6Sitojun BF_ENC(r, l, s, p[16]); 1351.6Sitojun BF_ENC(l, r, s, p[15]); 1361.6Sitojun BF_ENC(r, l, s, p[14]); 1371.6Sitojun BF_ENC(l, r, s, p[13]); 1381.6Sitojun BF_ENC(r, l, s, p[12]); 1391.6Sitojun BF_ENC(l, r, s, p[11]); 1401.6Sitojun BF_ENC(r, l, s, p[10]); 1411.6Sitojun BF_ENC(l, r, s, p[ 9]); 1421.6Sitojun BF_ENC(r, l, s, p[ 8]); 1431.6Sitojun BF_ENC(l, r, s, p[ 7]); 1441.6Sitojun BF_ENC(r, l, s, p[ 6]); 1451.6Sitojun BF_ENC(l, r, s, p[ 5]); 1461.6Sitojun BF_ENC(r, l, s, p[ 4]); 1471.6Sitojun BF_ENC(l, r, s, p[ 3]); 1481.6Sitojun BF_ENC(r, l, s, p[ 2]); 1491.6Sitojun BF_ENC(l, r, s, p[ 1]); 1501.6Sitojun r ^= p[0]; 1511.6Sitojun 1521.3Sitojun data[1] = l & 0xffffffff; 1531.3Sitojun data[0] = r & 0xffffffff; 1541.3Sitojun} 155