Update contrib.
1 /* crypto/evp/bio_enc.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
59 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
65 #include <openssl/buffer.h>
66 #include <openssl/evp.h>
67 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
68 #include "libcrypto_wsd_macros.h"
69 #include "libcrypto_wsd.h"
72 static int enc_write(BIO *h, const char *buf, int num);
73 static int enc_read(BIO *h, char *buf, int size);
74 /*static int enc_puts(BIO *h, const char *str); */
75 /*static int enc_gets(BIO *h, char *str, int size); */
76 static long enc_ctrl(BIO *h, int cmd, long arg1, void *arg2);
77 static int enc_new(BIO *h);
78 static int enc_free(BIO *data);
79 static long enc_callback_ctrl(BIO *h, int cmd, bio_info_cb *fps);
80 #define ENC_BLOCK_SIZE (1024*4)
81 #define BUF_OFFSET (EVP_MAX_BLOCK_LENGTH*2)
83 typedef struct enc_struct
87 int cont; /* <= 0 when finished */
89 int ok; /* bad decrypt */
90 EVP_CIPHER_CTX cipher;
91 /* buf is larger than ENC_BLOCK_SIZE because EVP_DecryptUpdate
92 * can return up to a block more data than is presented to it
94 char buf[ENC_BLOCK_SIZE+BUF_OFFSET+2];
98 static BIO_METHOD methods_enc=
100 BIO_TYPE_CIPHER,"cipher",
103 NULL, /* enc_puts, */
104 NULL, /* enc_gets, */
111 GET_STATIC_VAR_FROM_TLS(methods_enc,bio_enc,BIO_METHOD)
112 #define methods_enc (*GET_WSD_VAR_NAME(methods_enc,bio_enc, s)())
113 const BIO_METHOD temp_s_methods_enc=
115 BIO_TYPE_CIPHER,"cipher",
118 NULL, /* enc_puts, */
119 NULL, /* enc_gets, */
128 EXPORT_C BIO_METHOD *BIO_f_cipher(void)
130 return(&methods_enc);
133 static int enc_new(BIO *bi)
137 ctx=(BIO_ENC_CTX *)OPENSSL_malloc(sizeof(BIO_ENC_CTX));
138 if (ctx == NULL) return(0);
139 EVP_CIPHER_CTX_init(&ctx->cipher);
153 static int enc_free(BIO *a)
157 if (a == NULL) return(0);
158 b=(BIO_ENC_CTX *)a->ptr;
159 EVP_CIPHER_CTX_cleanup(&(b->cipher));
160 OPENSSL_cleanse(a->ptr,sizeof(BIO_ENC_CTX));
161 OPENSSL_free(a->ptr);
168 static int enc_read(BIO *b, char *out, int outl)
173 if (out == NULL) return(0);
174 ctx=(BIO_ENC_CTX *)b->ptr;
176 if ((ctx == NULL) || (b->next_bio == NULL)) return(0);
178 /* First check if there are bytes decoded/encoded */
179 if (ctx->buf_len > 0)
181 i=ctx->buf_len-ctx->buf_off;
182 if (i > outl) i=outl;
183 memcpy(out,&(ctx->buf[ctx->buf_off]),i);
188 if (ctx->buf_len == ctx->buf_off)
195 /* At this point, we have room of outl bytes and an empty
196 * buffer, so we should read in some more. */
200 if (ctx->cont <= 0) break;
202 /* read in at IV offset, read the EVP_Cipher
203 * documentation about why */
204 i=BIO_read(b->next_bio,&(ctx->buf[BUF_OFFSET]),ENC_BLOCK_SIZE);
208 /* Should be continue next time we are called? */
209 if (!BIO_should_retry(b->next_bio))
212 i=EVP_CipherFinal_ex(&(ctx->cipher),
213 (unsigned char *)ctx->buf,
220 ret=(ret == 0)?i:ret;
226 EVP_CipherUpdate(&(ctx->cipher),
227 (unsigned char *)ctx->buf,&ctx->buf_len,
228 (unsigned char *)&(ctx->buf[BUF_OFFSET]),i);
230 /* Note: it is possible for EVP_CipherUpdate to
231 * decrypt zero bytes because this is or looks like
232 * the final block: if this happens we should retry
233 * and either read more data or decrypt the final
236 if(ctx->buf_len == 0) continue;
239 if (ctx->buf_len <= outl)
244 memcpy(out,ctx->buf,i);
251 BIO_clear_retry_flags(b);
252 BIO_copy_next_retry(b);
253 return((ret == 0)?ctx->cont:ret);
256 static int enc_write(BIO *b, const char *in, int inl)
261 ctx=(BIO_ENC_CTX *)b->ptr;
264 BIO_clear_retry_flags(b);
265 n=ctx->buf_len-ctx->buf_off;
268 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n);
271 BIO_copy_next_retry(b);
277 /* at this point all pending data has been written */
279 if ((in == NULL) || (inl <= 0)) return(0);
284 n=(inl > ENC_BLOCK_SIZE)?ENC_BLOCK_SIZE:inl;
285 EVP_CipherUpdate(&(ctx->cipher),
286 (unsigned char *)ctx->buf,&ctx->buf_len,
287 (unsigned char *)in,n);
295 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n);
298 BIO_copy_next_retry(b);
299 return (ret == inl) ? i : ret - inl;
307 BIO_copy_next_retry(b);
311 static long enc_ctrl(BIO *b, int cmd, long num, void *ptr)
314 BIO_ENC_CTX *ctx,*dctx;
317 EVP_CIPHER_CTX **c_ctx;
319 ctx=(BIO_ENC_CTX *)b->ptr;
326 EVP_CipherInit_ex(&(ctx->cipher),NULL,NULL,NULL,NULL,
327 ctx->cipher.encrypt);
328 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
330 case BIO_CTRL_EOF: /* More to read */
334 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
336 case BIO_CTRL_WPENDING:
337 ret=ctx->buf_len-ctx->buf_off;
339 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
341 case BIO_CTRL_PENDING: /* More to read in buffer */
342 ret=ctx->buf_len-ctx->buf_off;
344 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
347 /* do a final write */
349 while (ctx->buf_len != ctx->buf_off)
351 i=enc_write(b,NULL,0);
360 ret=EVP_CipherFinal_ex(&(ctx->cipher),
361 (unsigned char *)ctx->buf,
366 /* push out the bytes */
370 /* Finally flush the underlying BIO */
371 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
373 case BIO_C_GET_CIPHER_STATUS:
376 case BIO_C_DO_STATE_MACHINE:
377 BIO_clear_retry_flags(b);
378 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
379 BIO_copy_next_retry(b);
381 case BIO_C_GET_CIPHER_CTX:
382 c_ctx=(EVP_CIPHER_CTX **)ptr;
383 (*c_ctx)= &(ctx->cipher);
388 dctx=(BIO_ENC_CTX *)dbio->ptr;
389 memcpy(&(dctx->cipher),&(ctx->cipher),sizeof(ctx->cipher));
393 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
399 static long enc_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
403 if (b->next_bio == NULL) return(0);
407 ret=BIO_callback_ctrl(b->next_bio,cmd,fp);
414 void BIO_set_cipher_ctx(b,c)
418 if (b == NULL) return;
420 if ((b->callback != NULL) &&
421 (b->callback(b,BIO_CB_CTRL,(char *)c,BIO_CTRL_SET,e,0L) <= 0))
425 ctx=(BIO_ENC_CTX *)b->ptr;
426 memcpy(ctx->cipher,c,sizeof(EVP_CIPHER_CTX));
428 if (b->callback != NULL)
429 b->callback(b,BIO_CB_CTRL,(char *)c,BIO_CTRL_SET,e,1L);
433 EXPORT_C void BIO_set_cipher(BIO *b, const EVP_CIPHER *c, const unsigned char *k,
434 const unsigned char *i, int e)
438 if (b == NULL) return;
440 if ((b->callback != NULL) &&
441 (b->callback(b,BIO_CB_CTRL,(const char *)c,BIO_CTRL_SET,e,0L) <= 0))
445 ctx=(BIO_ENC_CTX *)b->ptr;
446 EVP_CipherInit_ex(&(ctx->cipher),c,NULL, k,i,e);
448 if (b->callback != NULL)
449 b->callback(b,BIO_CB_CTRL,(const char *)c,BIO_CTRL_SET,e,1L);