2 * Compress: Compression algorithms under the cryptographic API.
4 * Copyright 2008 Sony Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program.
17 * If not, see <http://www.gnu.org/licenses/>.
20 #ifndef _CRYPTO_COMPRESS_H
21 #define _CRYPTO_COMPRESS_H
23 #include <linux/crypto.h>
27 const void *next_in
; /* next input byte */
28 void *next_out
; /* next output byte */
29 unsigned int avail_in
; /* bytes available at next_in */
30 unsigned int avail_out
; /* bytes available at next_out */
33 enum zlib_comp_params
{
34 ZLIB_COMP_LEVEL
= 1, /* e.g. Z_DEFAULT_COMPRESSION */
35 ZLIB_COMP_METHOD
, /* e.g. Z_DEFLATED */
36 ZLIB_COMP_WINDOWBITS
, /* e.g. MAX_WBITS */
37 ZLIB_COMP_MEMLEVEL
, /* e.g. DEF_MEM_LEVEL */
38 ZLIB_COMP_STRATEGY
, /* e.g. Z_DEFAULT_STRATEGY */
42 #define ZLIB_COMP_MAX (__ZLIB_COMP_MAX - 1)
45 enum zlib_decomp_params
{
46 ZLIB_DECOMP_WINDOWBITS
= 1, /* e.g. DEF_WBITS */
50 #define ZLIB_DECOMP_MAX (__ZLIB_DECOMP_MAX - 1)
54 struct crypto_tfm base
;
58 int (*compress_setup
)(struct crypto_pcomp
*tfm
, void *params
,
60 int (*compress_init
)(struct crypto_pcomp
*tfm
);
61 int (*compress_update
)(struct crypto_pcomp
*tfm
,
62 struct comp_request
*req
);
63 int (*compress_final
)(struct crypto_pcomp
*tfm
,
64 struct comp_request
*req
);
65 int (*decompress_setup
)(struct crypto_pcomp
*tfm
, void *params
,
67 int (*decompress_init
)(struct crypto_pcomp
*tfm
);
68 int (*decompress_update
)(struct crypto_pcomp
*tfm
,
69 struct comp_request
*req
);
70 int (*decompress_final
)(struct crypto_pcomp
*tfm
,
71 struct comp_request
*req
);
73 struct crypto_alg base
;
76 extern struct crypto_pcomp
*crypto_alloc_pcomp(const char *alg_name
, u32 type
,
79 static inline struct crypto_tfm
*crypto_pcomp_tfm(struct crypto_pcomp
*tfm
)
84 static inline void crypto_free_pcomp(struct crypto_pcomp
*tfm
)
86 crypto_destroy_tfm(tfm
, crypto_pcomp_tfm(tfm
));
89 static inline struct pcomp_alg
*__crypto_pcomp_alg(struct crypto_alg
*alg
)
91 return container_of(alg
, struct pcomp_alg
, base
);
94 static inline struct pcomp_alg
*crypto_pcomp_alg(struct crypto_pcomp
*tfm
)
96 return __crypto_pcomp_alg(crypto_pcomp_tfm(tfm
)->__crt_alg
);
99 static inline int crypto_compress_setup(struct crypto_pcomp
*tfm
,
100 void *params
, unsigned int len
)
102 return crypto_pcomp_alg(tfm
)->compress_setup(tfm
, params
, len
);
105 static inline int crypto_compress_init(struct crypto_pcomp
*tfm
)
107 return crypto_pcomp_alg(tfm
)->compress_init(tfm
);
110 static inline int crypto_compress_update(struct crypto_pcomp
*tfm
,
111 struct comp_request
*req
)
113 return crypto_pcomp_alg(tfm
)->compress_update(tfm
, req
);
116 static inline int crypto_compress_final(struct crypto_pcomp
*tfm
,
117 struct comp_request
*req
)
119 return crypto_pcomp_alg(tfm
)->compress_final(tfm
, req
);
122 static inline int crypto_decompress_setup(struct crypto_pcomp
*tfm
,
123 void *params
, unsigned int len
)
125 return crypto_pcomp_alg(tfm
)->decompress_setup(tfm
, params
, len
);
128 static inline int crypto_decompress_init(struct crypto_pcomp
*tfm
)
130 return crypto_pcomp_alg(tfm
)->decompress_init(tfm
);
133 static inline int crypto_decompress_update(struct crypto_pcomp
*tfm
,
134 struct comp_request
*req
)
136 return crypto_pcomp_alg(tfm
)->decompress_update(tfm
, req
);
139 static inline int crypto_decompress_final(struct crypto_pcomp
*tfm
,
140 struct comp_request
*req
)
142 return crypto_pcomp_alg(tfm
)->decompress_final(tfm
, req
);
145 #endif /* _CRYPTO_COMPRESS_H */