#include <linux/init.h>
#include <linux/module.h>
#include <linux/crypto.h>
#include <linux/zlib.h>
#include <linux/vmalloc.h>
#include <linux/interrupt.h>
#include <linux/mm.h>
#include <linux/net.h>
#include <crypto/internal/scompress.h>
#define DEFLATE_DEF_LEVEL …
#define DEFLATE_DEF_WINBITS …
#define DEFLATE_DEF_MEMLEVEL …
struct deflate_ctx { … };
static int deflate_comp_init(struct deflate_ctx *ctx)
{ … }
static int deflate_decomp_init(struct deflate_ctx *ctx)
{ … }
static void deflate_comp_exit(struct deflate_ctx *ctx)
{ … }
static void deflate_decomp_exit(struct deflate_ctx *ctx)
{ … }
static int __deflate_init(void *ctx)
{ … }
static void *deflate_alloc_ctx(struct crypto_scomp *tfm)
{ … }
static int deflate_init(struct crypto_tfm *tfm)
{ … }
static void __deflate_exit(void *ctx)
{ … }
static void deflate_free_ctx(struct crypto_scomp *tfm, void *ctx)
{ … }
static void deflate_exit(struct crypto_tfm *tfm)
{ … }
static int __deflate_compress(const u8 *src, unsigned int slen,
u8 *dst, unsigned int *dlen, void *ctx)
{ … }
static int deflate_compress(struct crypto_tfm *tfm, const u8 *src,
unsigned int slen, u8 *dst, unsigned int *dlen)
{ … }
static int deflate_scompress(struct crypto_scomp *tfm, const u8 *src,
unsigned int slen, u8 *dst, unsigned int *dlen,
void *ctx)
{ … }
static int __deflate_decompress(const u8 *src, unsigned int slen,
u8 *dst, unsigned int *dlen, void *ctx)
{ … }
static int deflate_decompress(struct crypto_tfm *tfm, const u8 *src,
unsigned int slen, u8 *dst, unsigned int *dlen)
{ … }
static int deflate_sdecompress(struct crypto_scomp *tfm, const u8 *src,
unsigned int slen, u8 *dst, unsigned int *dlen,
void *ctx)
{ … }
static struct crypto_alg alg = …;
static struct scomp_alg scomp = …;
static int __init deflate_mod_init(void)
{ … }
static void __exit deflate_mod_fini(void)
{ … }
subsys_initcall(deflate_mod_init);
module_exit(deflate_mod_fini);
MODULE_LICENSE(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_ALIAS_CRYPTO(…) …;
MODULE_ALIAS_CRYPTO(…) …;