]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/comp/comp_lib.c
Implement a stateful variant if the ZLIB compression method. The old
[thirdparty/openssl.git] / crypto / comp / comp_lib.c
CommitLineData
dfeab068
RE
1#include <stdio.h>
2#include <stdlib.h>
3#include <string.h>
ec577822
BM
4#include <openssl/objects.h>
5#include <openssl/comp.h>
dfeab068 6
6b691a5c 7COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
dfeab068
RE
8 {
9 COMP_CTX *ret;
10
26a3a48d 11 if ((ret=(COMP_CTX *)OPENSSL_malloc(sizeof(COMP_CTX))) == NULL)
dfeab068
RE
12 {
13 /* ZZZZZZZZZZZZZZZZ */
14 return(NULL);
15 }
16 memset(ret,0,sizeof(COMP_CTX));
17 ret->meth=meth;
18 if ((ret->meth->init != NULL) && !ret->meth->init(ret))
19 {
26a3a48d 20 OPENSSL_free(ret);
dfeab068
RE
21 ret=NULL;
22 }
dfeab068
RE
23 return(ret);
24 }
25
6b691a5c 26void COMP_CTX_free(COMP_CTX *ctx)
dfeab068 27 {
e03ddfae
BL
28 if(ctx == NULL)
29 return;
30
dfeab068
RE
31 if (ctx->meth->finish != NULL)
32 ctx->meth->finish(ctx);
33
26a3a48d 34 OPENSSL_free(ctx);
dfeab068
RE
35 }
36
6b691a5c
UM
37int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
38 unsigned char *in, int ilen)
dfeab068
RE
39 {
40 int ret;
41 if (ctx->meth->compress == NULL)
42 {
43 /* ZZZZZZZZZZZZZZZZZ */
44 return(-1);
45 }
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen);
47 if (ret > 0)
48 {
49 ctx->compress_in+=ilen;
50 ctx->compress_out+=ret;
51 }
52 return(ret);
53 }
54
6b691a5c
UM
55int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
56 unsigned char *in, int ilen)
dfeab068
RE
57 {
58 int ret;
59
60 if (ctx->meth->expand == NULL)
61 {
62 /* ZZZZZZZZZZZZZZZZZ */
63 return(-1);
64 }
65 ret=ctx->meth->expand(ctx,out,olen,in,ilen);
66 if (ret > 0)
67 {
68 ctx->expand_in+=ilen;
69 ctx->expand_out+=ret;
70 }
71 return(ret);
72 }