1 /* $OpenBSD: e_bf.c,v 1.18 2024/01/04 17:38:36 tb Exp $ */ 2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 * All rights reserved. 4 * 5 * This package is an SSL implementation written 6 * by Eric Young (eay@cryptsoft.com). 7 * The implementation was written so as to conform with Netscapes SSL. 8 * 9 * This library is free for commercial and non-commercial use as long as 10 * the following conditions are aheared to. The following conditions 11 * apply to all code found in this distribution, be it the RC4, RSA, 12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 * included with this distribution is covered by the same copyright terms 14 * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 * 16 * Copyright remains Eric Young's, and as such any Copyright notices in 17 * the code are not to be removed. 18 * If this package is used in a product, Eric Young should be given attribution 19 * as the author of the parts of the library used. 20 * This can be in the form of a textual message at program startup or 21 * in documentation (online or textual) provided with the package. 22 * 23 * Redistribution and use in source and binary forms, with or without 24 * modification, are permitted provided that the following conditions 25 * are met: 26 * 1. Redistributions of source code must retain the copyright 27 * notice, this list of conditions and the following disclaimer. 28 * 2. Redistributions in binary form must reproduce the above copyright 29 * notice, this list of conditions and the following disclaimer in the 30 * documentation and/or other materials provided with the distribution. 31 * 3. All advertising materials mentioning features or use of this software 32 * must display the following acknowledgement: 33 * "This product includes cryptographic software written by 34 * Eric Young (eay@cryptsoft.com)" 35 * The word 'cryptographic' can be left out if the rouines from the library 36 * being used are not cryptographic related :-). 37 * 4. If you include any Windows specific code (or a derivative thereof) from 38 * the apps directory (application code) you must include an acknowledgement: 39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 * 41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 * SUCH DAMAGE. 52 * 53 * The licence and distribution terms for any publically available version or 54 * derivative of this code cannot be changed. i.e. this code cannot simply be 55 * copied and put under another distribution licence 56 * [including the GNU Public Licence.] 57 */ 58 59 #include <limits.h> 60 #include <stdio.h> 61 62 #include <openssl/opensslconf.h> 63 64 #ifndef OPENSSL_NO_BF 65 66 #include <openssl/blowfish.h> 67 #include <openssl/evp.h> 68 #include <openssl/objects.h> 69 70 #include "evp_local.h" 71 72 typedef struct { 73 BF_KEY ks; 74 } EVP_BF_KEY; 75 76 #define data(ctx) ((EVP_BF_KEY *)(ctx)->cipher_data) 77 78 static int 79 bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, 80 const unsigned char *iv, int enc) 81 { 82 BF_set_key(&data(ctx)->ks, EVP_CIPHER_CTX_key_length(ctx), key); 83 return 1; 84 } 85 86 static int 87 bf_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) 88 { 89 size_t chunk = LONG_MAX & ~0xff; 90 91 while (inl >= chunk) { 92 BF_cbc_encrypt(in, out, (long)chunk, &((EVP_BF_KEY *)ctx->cipher_data)->ks, ctx->iv, ctx->encrypt); 93 inl -= chunk; 94 in += chunk; 95 out += chunk; 96 } 97 98 if (inl) 99 BF_cbc_encrypt(in, out, (long)inl, &((EVP_BF_KEY *)ctx->cipher_data)->ks, ctx->iv, ctx->encrypt); 100 101 return 1; 102 } 103 104 static int 105 bf_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) 106 { 107 size_t chunk = LONG_MAX & ~0xff; 108 109 if (inl < chunk) 110 chunk = inl; 111 112 while (inl && inl >= chunk) { 113 BF_cfb64_encrypt(in, out, (long)chunk, &((EVP_BF_KEY *)ctx->cipher_data)->ks, ctx->iv, &ctx->num, ctx->encrypt); 114 inl -= chunk; 115 in += chunk; 116 out += chunk; 117 if (inl < chunk) 118 chunk = inl; 119 } 120 121 return 1; 122 } 123 124 static int 125 bf_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) 126 { 127 size_t i, bl; 128 129 bl = ctx->cipher->block_size; 130 131 if (inl < bl) 132 return 1; 133 134 inl -= bl; 135 136 for (i = 0; i <= inl; i += bl) 137 BF_ecb_encrypt(in + i, out + i, &((EVP_BF_KEY *)ctx->cipher_data)->ks, ctx->encrypt); 138 139 return 1; 140 } 141 142 static int 143 bf_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) 144 { 145 size_t chunk = LONG_MAX & ~0xff; 146 147 while (inl >= chunk) { 148 BF_ofb64_encrypt(in, out, (long)chunk, &((EVP_BF_KEY *)ctx->cipher_data)->ks, ctx->iv, &ctx->num); 149 inl -= chunk; 150 in += chunk; 151 out += chunk; 152 } 153 154 if (inl) 155 BF_ofb64_encrypt(in, out, (long)inl, &((EVP_BF_KEY *)ctx->cipher_data)->ks, ctx->iv, &ctx->num); 156 157 return 1; 158 } 159 160 static const EVP_CIPHER bf_cbc = { 161 .nid = NID_bf_cbc, 162 .block_size = 8, 163 .key_len = 16, 164 .iv_len = 8, 165 .flags = EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_CBC_MODE, 166 .init = bf_init_key, 167 .do_cipher = bf_cbc_cipher, 168 .cleanup = NULL, 169 .ctx_size = sizeof(EVP_BF_KEY), 170 .set_asn1_parameters = EVP_CIPHER_set_asn1_iv, 171 .get_asn1_parameters = EVP_CIPHER_get_asn1_iv, 172 .ctrl = NULL, 173 }; 174 175 const EVP_CIPHER * 176 EVP_bf_cbc(void) 177 { 178 return &bf_cbc; 179 } 180 181 static const EVP_CIPHER bf_cfb64 = { 182 .nid = NID_bf_cfb64, 183 .block_size = 1, 184 .key_len = 16, 185 .iv_len = 8, 186 .flags = EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_CFB_MODE, 187 .init = bf_init_key, 188 .do_cipher = bf_cfb64_cipher, 189 .cleanup = NULL, 190 .ctx_size = sizeof(EVP_BF_KEY), 191 .set_asn1_parameters = EVP_CIPHER_set_asn1_iv, 192 .get_asn1_parameters = EVP_CIPHER_get_asn1_iv, 193 .ctrl = NULL, 194 }; 195 196 const EVP_CIPHER * 197 EVP_bf_cfb64(void) 198 { 199 return &bf_cfb64; 200 } 201 202 static const EVP_CIPHER bf_ofb = { 203 .nid = NID_bf_ofb64, 204 .block_size = 1, 205 .key_len = 16, 206 .iv_len = 8, 207 .flags = EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_OFB_MODE, 208 .init = bf_init_key, 209 .do_cipher = bf_ofb_cipher, 210 .cleanup = NULL, 211 .ctx_size = sizeof(EVP_BF_KEY), 212 .set_asn1_parameters = EVP_CIPHER_set_asn1_iv, 213 .get_asn1_parameters = EVP_CIPHER_get_asn1_iv, 214 .ctrl = NULL, 215 }; 216 217 const EVP_CIPHER * 218 EVP_bf_ofb(void) 219 { 220 return &bf_ofb; 221 } 222 223 static const EVP_CIPHER bf_ecb = { 224 .nid = NID_bf_ecb, 225 .block_size = 8, 226 .key_len = 16, 227 .iv_len = 0, 228 .flags = EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_ECB_MODE, 229 .init = bf_init_key, 230 .do_cipher = bf_ecb_cipher, 231 .cleanup = NULL, 232 .ctx_size = sizeof(EVP_BF_KEY), 233 .set_asn1_parameters = EVP_CIPHER_set_asn1_iv, 234 .get_asn1_parameters = EVP_CIPHER_get_asn1_iv, 235 .ctrl = NULL, 236 }; 237 238 const EVP_CIPHER * 239 EVP_bf_ecb(void) 240 { 241 return &bf_ecb; 242 } 243 #endif 244