#include <linux/init.h>
#include <linux/module.h>
#include <linux/crypto.h>
#include <linux/sw842.h>
#include <crypto/internal/scompress.h>
struct crypto842_ctx { … };
static void *crypto842_alloc_ctx(struct crypto_scomp *tfm)
{ … }
static int crypto842_init(struct crypto_tfm *tfm)
{ … }
static void crypto842_free_ctx(struct crypto_scomp *tfm, void *ctx)
{ … }
static void crypto842_exit(struct crypto_tfm *tfm)
{ … }
static int crypto842_compress(struct crypto_tfm *tfm,
const u8 *src, unsigned int slen,
u8 *dst, unsigned int *dlen)
{ … }
static int crypto842_scompress(struct crypto_scomp *tfm,
const u8 *src, unsigned int slen,
u8 *dst, unsigned int *dlen, void *ctx)
{ … }
static int crypto842_decompress(struct crypto_tfm *tfm,
const u8 *src, unsigned int slen,
u8 *dst, unsigned int *dlen)
{ … }
static int crypto842_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 crypto842_mod_init(void)
{ … }
subsys_initcall(crypto842_mod_init);
static void __exit crypto842_mod_exit(void)
{ … }
module_exit(crypto842_mod_exit);
MODULE_LICENSE(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_ALIAS_CRYPTO(…) …;
MODULE_ALIAS_CRYPTO(…) …;
MODULE_AUTHOR(…) …;