1998-12-21 11:00:56 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/comp.h>
|
1998-12-21 11:00:56 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
COMP_CTX *ret;
|
1998-12-21 11:00:56 +00:00
|
|
|
|
2015-05-02 03:10:31 +00:00
|
|
|
if ((ret = OPENSSL_malloc(sizeof(*ret))) == NULL) {
|
2015-01-22 03:40:55 +00:00
|
|
|
/* ZZZZZZZZZZZZZZZZ */
|
|
|
|
return (NULL);
|
|
|
|
}
|
2015-05-04 22:00:15 +00:00
|
|
|
memset(ret, 0, sizeof(*ret));
|
2015-01-22 03:40:55 +00:00
|
|
|
ret->meth = meth;
|
|
|
|
if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
|
|
|
|
OPENSSL_free(ret);
|
|
|
|
ret = NULL;
|
|
|
|
}
|
|
|
|
return (ret);
|
|
|
|
}
|
1998-12-21 11:00:56 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
void COMP_CTX_free(COMP_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (ctx == NULL)
|
|
|
|
return;
|
1999-01-07 19:15:59 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (ctx->meth->finish != NULL)
|
|
|
|
ctx->meth->finish(ctx);
|
1998-12-21 11:00:56 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
OPENSSL_free(ctx);
|
|
|
|
}
|
1998-12-21 11:00:56 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
|
2015-01-22 03:40:55 +00:00
|
|
|
unsigned char *in, int ilen)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
if (ctx->meth->compress == NULL) {
|
|
|
|
/* ZZZZZZZZZZZZZZZZZ */
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
ret = ctx->meth->compress(ctx, out, olen, in, ilen);
|
|
|
|
if (ret > 0) {
|
|
|
|
ctx->compress_in += ilen;
|
|
|
|
ctx->compress_out += ret;
|
|
|
|
}
|
|
|
|
return (ret);
|
|
|
|
}
|
1998-12-21 11:00:56 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
|
2015-01-22 03:40:55 +00:00
|
|
|
unsigned char *in, int ilen)
|
|
|
|
{
|
|
|
|
int ret;
|
1998-12-21 11:00:56 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (ctx->meth->expand == NULL) {
|
|
|
|
/* ZZZZZZZZZZZZZZZZZ */
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
ret = ctx->meth->expand(ctx, out, olen, in, ilen);
|
|
|
|
if (ret > 0) {
|
|
|
|
ctx->expand_in += ilen;
|
|
|
|
ctx->expand_out += ret;
|
|
|
|
}
|
|
|
|
return (ret);
|
|
|
|
}
|