]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/e_des.c
Remove /* foo.c */ comments
[thirdparty/openssl.git] / crypto / evp / e_des.c
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
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.
0f113f3e 7 *
d02b48c6
RE
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).
0f113f3e 14 *
d02b48c6
RE
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.
0f113f3e 21 *
d02b48c6
RE
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 :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
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.
0f113f3e 51 *
d02b48c6
RE
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>
b39fc560 59#include "internal/cryptlib.h"
9e9e8cb6 60#ifndef OPENSSL_NO_DES
0f113f3e
MC
61# include <openssl/evp.h>
62# include <openssl/objects.h>
6435f0f6 63# include "internal/evp_int.h"
0f113f3e
MC
64# include <openssl/des.h>
65# include <openssl/rand.h>
d02b48c6 66
0f113f3e
MC
67typedef struct {
68 union {
69 double align;
70 DES_key_schedule ks;
71 } ks;
72 union {
73 void (*cbc) (const void *, void *, size_t, const void *, void *);
74 } stream;
75} EVP_DES_KEY;
c5d975a7 76
0f113f3e 77# if defined(AES_ASM) && (defined(__sparc) || defined(__sparc__))
c5d975a7
AP
78/* ---------^^^ this is not a typo, just a way to detect that
79 * assembler support was in general requested... */
0f113f3e 80# include "sparc_arch.h"
c5d975a7
AP
81
82extern unsigned int OPENSSL_sparcv9cap_P[];
83
0f113f3e 84# define SPARC_DES_CAPABLE (OPENSSL_sparcv9cap_P[1] & CFR_DES)
c5d975a7 85
0f113f3e
MC
86void des_t4_key_expand(const void *key, DES_key_schedule *ks);
87void des_t4_cbc_encrypt(const void *inp, void *out, size_t len,
88 DES_key_schedule *ks, unsigned char iv[8]);
89void des_t4_cbc_decrypt(const void *inp, void *out, size_t len,
90 DES_key_schedule *ks, unsigned char iv[8]);
91# endif
c5d975a7 92
1921eaad 93static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
0f113f3e 94 const unsigned char *iv, int enc);
216659eb 95static int des_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr);
d02b48c6 96
0f113f3e
MC
97/*
98 * Because of various casts and different names can't use
99 * IMPLEMENT_BLOCK_CIPHER
100 */
edf0bfb5 101
1921eaad 102static int des_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
0f113f3e 103 const unsigned char *in, size_t inl)
57ae2e24 104{
0f113f3e
MC
105 BLOCK_CIPHER_ecb_loop()
106 DES_ecb_encrypt((DES_cblock *)(in + i), (DES_cblock *)(out + i),
6435f0f6
RL
107 EVP_CIPHER_CTX_cipher_data(ctx),
108 EVP_CIPHER_CTX_encrypting(ctx));
0f113f3e 109 return 1;
57ae2e24 110}
d02b48c6 111
1921eaad 112static int des_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
0f113f3e 113 const unsigned char *in, size_t inl)
57ae2e24 114{
0f113f3e 115 while (inl >= EVP_MAXCHUNK) {
6435f0f6
RL
116 int num = EVP_CIPHER_CTX_num(ctx);
117 DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK,
118 EVP_CIPHER_CTX_cipher_data(ctx),
119 (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), &num);
120 EVP_CIPHER_CTX_set_num(ctx, num);
0f113f3e
MC
121 inl -= EVP_MAXCHUNK;
122 in += EVP_MAXCHUNK;
123 out += EVP_MAXCHUNK;
124 }
6435f0f6
RL
125 if (inl) {
126 int num = EVP_CIPHER_CTX_num(ctx);
127 DES_ofb64_encrypt(in, out, (long)inl, EVP_CIPHER_CTX_cipher_data(ctx),
128 (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), &num);
129 EVP_CIPHER_CTX_set_num(ctx, num);
130 }
0f113f3e 131 return 1;
57ae2e24
DSH
132}
133
1921eaad 134static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
0f113f3e 135 const unsigned char *in, size_t inl)
57ae2e24 136{
6435f0f6 137 EVP_DES_KEY *dat = (EVP_DES_KEY *) EVP_CIPHER_CTX_cipher_data(ctx);
c5d975a7 138
0f113f3e 139 if (dat->stream.cbc) {
6435f0f6 140 (*dat->stream.cbc) (in, out, inl, &dat->ks.ks, EVP_CIPHER_CTX_iv_noconst(ctx));
0f113f3e
MC
141 return 1;
142 }
143 while (inl >= EVP_MAXCHUNK) {
6435f0f6
RL
144 DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK, EVP_CIPHER_CTX_cipher_data(ctx),
145 (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), EVP_CIPHER_CTX_encrypting(ctx));
0f113f3e
MC
146 inl -= EVP_MAXCHUNK;
147 in += EVP_MAXCHUNK;
148 out += EVP_MAXCHUNK;
149 }
150 if (inl)
6435f0f6
RL
151 DES_ncbc_encrypt(in, out, (long)inl, EVP_CIPHER_CTX_cipher_data(ctx),
152 (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), EVP_CIPHER_CTX_encrypting(ctx));
0f113f3e 153 return 1;
57ae2e24
DSH
154}
155
8c6336b0 156static int des_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
0f113f3e 157 const unsigned char *in, size_t inl)
57ae2e24 158{
0f113f3e 159 while (inl >= EVP_MAXCHUNK) {
6435f0f6
RL
160 int num = EVP_CIPHER_CTX_num(ctx);
161 DES_cfb64_encrypt(in, out, (long)EVP_MAXCHUNK,
162 EVP_CIPHER_CTX_cipher_data(ctx),
163 (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), &num,
164 EVP_CIPHER_CTX_encrypting(ctx));
165 EVP_CIPHER_CTX_set_num(ctx, num);
0f113f3e
MC
166 inl -= EVP_MAXCHUNK;
167 in += EVP_MAXCHUNK;
168 out += EVP_MAXCHUNK;
169 }
6435f0f6
RL
170 if (inl) {
171 int num = EVP_CIPHER_CTX_num(ctx);
172 DES_cfb64_encrypt(in, out, (long)inl, EVP_CIPHER_CTX_cipher_data(ctx),
173 (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), &num,
174 EVP_CIPHER_CTX_encrypting(ctx));
175 EVP_CIPHER_CTX_set_num(ctx, num);
176 }
0f113f3e 177 return 1;
57ae2e24
DSH
178}
179
0f113f3e
MC
180/*
181 * Although we have a CFB-r implementation for DES, it doesn't pack the right
182 * way, so wrap it here
183 */
8c6336b0 184static int des_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
0f113f3e
MC
185 const unsigned char *in, size_t inl)
186{
187 size_t n, chunk = EVP_MAXCHUNK / 8;
188 unsigned char c[1], d[1];
8c6336b0 189
0f113f3e
MC
190 if (inl < chunk)
191 chunk = inl;
b444ac3e 192
0f113f3e
MC
193 while (inl && inl >= chunk) {
194 for (n = 0; n < chunk * 8; ++n) {
195 c[0] = (in[n / 8] & (1 << (7 - n % 8))) ? 0x80 : 0;
6435f0f6
RL
196 DES_cfb_encrypt(c, d, 1, 1, EVP_CIPHER_CTX_cipher_data(ctx),
197 (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), EVP_CIPHER_CTX_encrypting(ctx));
0f113f3e
MC
198 out[n / 8] =
199 (out[n / 8] & ~(0x80 >> (unsigned int)(n % 8))) |
200 ((d[0] & 0x80) >> (unsigned int)(n % 8));
201 }
202 inl -= chunk;
203 in += chunk;
204 out += chunk;
205 if (inl < chunk)
206 chunk = inl;
207 }
b444ac3e 208
8c6336b0 209 return 1;
0f113f3e 210}
8c6336b0
AP
211
212static int des_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
0f113f3e
MC
213 const unsigned char *in, size_t inl)
214{
215 while (inl >= EVP_MAXCHUNK) {
6435f0f6
RL
216 DES_cfb_encrypt(in, out, 8, (long)EVP_MAXCHUNK, EVP_CIPHER_CTX_cipher_data(ctx),
217 (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), EVP_CIPHER_CTX_encrypting(ctx));
0f113f3e
MC
218 inl -= EVP_MAXCHUNK;
219 in += EVP_MAXCHUNK;
220 out += EVP_MAXCHUNK;
221 }
b444ac3e 222 if (inl)
6435f0f6
RL
223 DES_cfb_encrypt(in, out, 8, (long)inl, EVP_CIPHER_CTX_cipher_data(ctx),
224 (DES_cblock *)EVP_CIPHER_CTX_iv_noconst(ctx), EVP_CIPHER_CTX_encrypting(ctx));
8c6336b0 225 return 1;
0f113f3e 226}
8c6336b0 227
c5d975a7 228BLOCK_CIPHER_defs(des, EVP_DES_KEY, NID_des, 8, 8, 8, 64,
0f113f3e
MC
229 EVP_CIPH_RAND_KEY, des_init_key, NULL,
230 EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, des_ctrl)
d02b48c6 231
0f113f3e
MC
232 BLOCK_CIPHER_def_cfb(des, EVP_DES_KEY, NID_des, 8, 8, 1,
233 EVP_CIPH_RAND_KEY, des_init_key, NULL,
234 EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, des_ctrl)
8c6336b0 235
0f113f3e
MC
236 BLOCK_CIPHER_def_cfb(des, EVP_DES_KEY, NID_des, 8, 8, 8,
237 EVP_CIPH_RAND_KEY, des_init_key, NULL,
238 EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, des_ctrl)
edf0bfb5 239
1921eaad 240static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
0f113f3e
MC
241 const unsigned char *iv, int enc)
242{
243 DES_cblock *deskey = (DES_cblock *)key;
6435f0f6 244 EVP_DES_KEY *dat = (EVP_DES_KEY *) EVP_CIPHER_CTX_cipher_data(ctx);
c5d975a7 245
0f113f3e
MC
246 dat->stream.cbc = NULL;
247# if defined(SPARC_DES_CAPABLE)
248 if (SPARC_DES_CAPABLE) {
ecdd0ff7 249 int mode = EVP_CIPHER_CTX_mode(ctx);
c5d975a7 250
0f113f3e
MC
251 if (mode == EVP_CIPH_CBC_MODE) {
252 des_t4_key_expand(key, &dat->ks.ks);
253 dat->stream.cbc = enc ? des_t4_cbc_encrypt : des_t4_cbc_decrypt;
254 return 1;
255 }
256 }
257# endif
6435f0f6 258 DES_set_key_unchecked(deskey, EVP_CIPHER_CTX_cipher_data(ctx));
0f113f3e
MC
259 return 1;
260}
57ae2e24 261
216659eb 262static int des_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr)
0f113f3e
MC
263{
264
265 switch (type) {
266 case EVP_CTRL_RAND_KEY:
267 if (RAND_bytes(ptr, 8) <= 0)
268 return 0;
269 DES_set_odd_parity((DES_cblock *)ptr);
270 return 1;
216659eb 271
0f113f3e
MC
272 default:
273 return -1;
274 }
275}
216659eb 276
d02f751c 277#endif