]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/crypto.h
task_struct cleanup: move binfmt field to mm_struct
[mirror_ubuntu-bionic-kernel.git] / include / linux / crypto.h
CommitLineData
1da177e4
LT
1/*
2 * Scatterlist Cryptographic API.
3 *
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 David S. Miller (davem@redhat.com)
5cb1454b 6 * Copyright (c) 2005 Herbert Xu <herbert@gondor.apana.org.au>
1da177e4
LT
7 *
8 * Portions derived from Cryptoapi, by Alexander Kjeldaas <astor@fast.no>
18735dd8 9 * and Nettle, by Niels Möller.
1da177e4
LT
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
14 * any later version.
15 *
16 */
17#ifndef _LINUX_CRYPTO_H
18#define _LINUX_CRYPTO_H
19
6521f302 20#include <asm/atomic.h>
1da177e4
LT
21#include <linux/module.h>
22#include <linux/kernel.h>
1da177e4 23#include <linux/list.h>
79911102 24#include <linux/slab.h>
1da177e4 25#include <linux/string.h>
79911102 26#include <linux/uaccess.h>
1da177e4
LT
27
28/*
29 * Algorithm masks and types.
30 */
2825982d 31#define CRYPTO_ALG_TYPE_MASK 0x0000000f
1da177e4 32#define CRYPTO_ALG_TYPE_CIPHER 0x00000001
004a403c
LH
33#define CRYPTO_ALG_TYPE_COMPRESS 0x00000002
34#define CRYPTO_ALG_TYPE_AEAD 0x00000003
055bcee3 35#define CRYPTO_ALG_TYPE_BLKCIPHER 0x00000004
332f8840 36#define CRYPTO_ALG_TYPE_ABLKCIPHER 0x00000005
61da88e2 37#define CRYPTO_ALG_TYPE_GIVCIPHER 0x00000006
004a403c 38#define CRYPTO_ALG_TYPE_DIGEST 0x00000008
5f7082ed
HX
39#define CRYPTO_ALG_TYPE_HASH 0x00000008
40#define CRYPTO_ALG_TYPE_SHASH 0x00000009
004a403c 41#define CRYPTO_ALG_TYPE_AHASH 0x0000000a
17f0f4a4 42#define CRYPTO_ALG_TYPE_RNG 0x0000000c
a1d2f095 43#define CRYPTO_ALG_TYPE_PCOMPRESS 0x0000000f
055bcee3
HX
44
45#define CRYPTO_ALG_TYPE_HASH_MASK 0x0000000e
004a403c 46#define CRYPTO_ALG_TYPE_AHASH_MASK 0x0000000c
332f8840 47#define CRYPTO_ALG_TYPE_BLKCIPHER_MASK 0x0000000c
1da177e4 48
2825982d 49#define CRYPTO_ALG_LARVAL 0x00000010
6bfd4809
HX
50#define CRYPTO_ALG_DEAD 0x00000020
51#define CRYPTO_ALG_DYING 0x00000040
f3f632d6 52#define CRYPTO_ALG_ASYNC 0x00000080
2825982d 53
6010439f
HX
54/*
55 * Set this bit if and only if the algorithm requires another algorithm of
56 * the same type to handle corner cases.
57 */
58#define CRYPTO_ALG_NEED_FALLBACK 0x00000100
59
ecfc4329
HX
60/*
61 * This bit is set for symmetric key ciphers that have already been wrapped
62 * with a generic IV generator to prevent them from being wrapped again.
63 */
64#define CRYPTO_ALG_GENIV 0x00000200
65
73d3864a
HX
66/*
67 * Set if the algorithm has passed automated run-time testing. Note that
68 * if there is no run-time testing for a given algorithm it is considered
69 * to have passed.
70 */
71
72#define CRYPTO_ALG_TESTED 0x00000400
73
1da177e4
LT
74/*
75 * Transform masks and values (for crt_flags).
76 */
1da177e4
LT
77#define CRYPTO_TFM_REQ_MASK 0x000fff00
78#define CRYPTO_TFM_RES_MASK 0xfff00000
79
1da177e4 80#define CRYPTO_TFM_REQ_WEAK_KEY 0x00000100
64baf3cf 81#define CRYPTO_TFM_REQ_MAY_SLEEP 0x00000200
32e3983f 82#define CRYPTO_TFM_REQ_MAY_BACKLOG 0x00000400
1da177e4
LT
83#define CRYPTO_TFM_RES_WEAK_KEY 0x00100000
84#define CRYPTO_TFM_RES_BAD_KEY_LEN 0x00200000
85#define CRYPTO_TFM_RES_BAD_KEY_SCHED 0x00400000
86#define CRYPTO_TFM_RES_BAD_BLOCK_LEN 0x00800000
87#define CRYPTO_TFM_RES_BAD_FLAGS 0x01000000
88
89/*
90 * Miscellaneous stuff.
91 */
1da177e4
LT
92#define CRYPTO_MAX_ALG_NAME 64
93
79911102
HX
94/*
95 * The macro CRYPTO_MINALIGN_ATTR (along with the void * type in the actual
96 * declaration) is used to ensure that the crypto_tfm context structure is
97 * aligned correctly for the given architecture so that there are no alignment
98 * faults for C data types. In particular, this is required on platforms such
99 * as arm where pointers are 32-bit aligned but there are data types such as
100 * u64 which require 64-bit alignment.
101 */
102#if defined(ARCH_KMALLOC_MINALIGN)
103#define CRYPTO_MINALIGN ARCH_KMALLOC_MINALIGN
104#elif defined(ARCH_SLAB_MINALIGN)
105#define CRYPTO_MINALIGN ARCH_SLAB_MINALIGN
6eb72284
HX
106#else
107#define CRYPTO_MINALIGN __alignof__(unsigned long long)
79911102
HX
108#endif
109
79911102 110#define CRYPTO_MINALIGN_ATTR __attribute__ ((__aligned__(CRYPTO_MINALIGN)))
79911102 111
1da177e4 112struct scatterlist;
32e3983f
HX
113struct crypto_ablkcipher;
114struct crypto_async_request;
1ae97820 115struct crypto_aead;
5cde0af2 116struct crypto_blkcipher;
055bcee3 117struct crypto_hash;
17f0f4a4 118struct crypto_rng;
40725181 119struct crypto_tfm;
e853c3cf 120struct crypto_type;
743edf57 121struct aead_givcrypt_request;
61da88e2 122struct skcipher_givcrypt_request;
40725181 123
32e3983f
HX
124typedef void (*crypto_completion_t)(struct crypto_async_request *req, int err);
125
126struct crypto_async_request {
127 struct list_head list;
128 crypto_completion_t complete;
129 void *data;
130 struct crypto_tfm *tfm;
131
132 u32 flags;
133};
134
135struct ablkcipher_request {
136 struct crypto_async_request base;
137
138 unsigned int nbytes;
139
140 void *info;
141
142 struct scatterlist *src;
143 struct scatterlist *dst;
144
145 void *__ctx[] CRYPTO_MINALIGN_ATTR;
146};
147
1ae97820
HX
148/**
149 * struct aead_request - AEAD request
150 * @base: Common attributes for async crypto requests
151 * @assoclen: Length in bytes of associated data for authentication
152 * @cryptlen: Length of data to be encrypted or decrypted
153 * @iv: Initialisation vector
154 * @assoc: Associated data
155 * @src: Source data
156 * @dst: Destination data
157 * @__ctx: Start of private context data
158 */
159struct aead_request {
160 struct crypto_async_request base;
161
162 unsigned int assoclen;
163 unsigned int cryptlen;
164
165 u8 *iv;
166
167 struct scatterlist *assoc;
168 struct scatterlist *src;
169 struct scatterlist *dst;
170
171 void *__ctx[] CRYPTO_MINALIGN_ATTR;
172};
173
5cde0af2
HX
174struct blkcipher_desc {
175 struct crypto_blkcipher *tfm;
176 void *info;
177 u32 flags;
178};
179
40725181
HX
180struct cipher_desc {
181 struct crypto_tfm *tfm;
6c2bb98b 182 void (*crfn)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
40725181
HX
183 unsigned int (*prfn)(const struct cipher_desc *desc, u8 *dst,
184 const u8 *src, unsigned int nbytes);
185 void *info;
186};
1da177e4 187
055bcee3
HX
188struct hash_desc {
189 struct crypto_hash *tfm;
190 u32 flags;
191};
192
1da177e4
LT
193/*
194 * Algorithms: modular crypto algorithm implementations, managed
195 * via crypto_register_alg() and crypto_unregister_alg().
196 */
b5b7f088
HX
197struct ablkcipher_alg {
198 int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key,
199 unsigned int keylen);
200 int (*encrypt)(struct ablkcipher_request *req);
201 int (*decrypt)(struct ablkcipher_request *req);
61da88e2
HX
202 int (*givencrypt)(struct skcipher_givcrypt_request *req);
203 int (*givdecrypt)(struct skcipher_givcrypt_request *req);
b5b7f088 204
23508e11
HX
205 const char *geniv;
206
b5b7f088
HX
207 unsigned int min_keysize;
208 unsigned int max_keysize;
209 unsigned int ivsize;
210};
211
1ae97820
HX
212struct aead_alg {
213 int (*setkey)(struct crypto_aead *tfm, const u8 *key,
214 unsigned int keylen);
7ba683a6 215 int (*setauthsize)(struct crypto_aead *tfm, unsigned int authsize);
1ae97820
HX
216 int (*encrypt)(struct aead_request *req);
217 int (*decrypt)(struct aead_request *req);
743edf57
HX
218 int (*givencrypt)(struct aead_givcrypt_request *req);
219 int (*givdecrypt)(struct aead_givcrypt_request *req);
1ae97820 220
5b6d2d7f
HX
221 const char *geniv;
222
1ae97820 223 unsigned int ivsize;
7ba683a6 224 unsigned int maxauthsize;
1ae97820
HX
225};
226
5cde0af2
HX
227struct blkcipher_alg {
228 int (*setkey)(struct crypto_tfm *tfm, const u8 *key,
229 unsigned int keylen);
230 int (*encrypt)(struct blkcipher_desc *desc,
231 struct scatterlist *dst, struct scatterlist *src,
232 unsigned int nbytes);
233 int (*decrypt)(struct blkcipher_desc *desc,
234 struct scatterlist *dst, struct scatterlist *src,
235 unsigned int nbytes);
236
23508e11
HX
237 const char *geniv;
238
5cde0af2
HX
239 unsigned int min_keysize;
240 unsigned int max_keysize;
241 unsigned int ivsize;
242};
243
1da177e4
LT
244struct cipher_alg {
245 unsigned int cia_min_keysize;
246 unsigned int cia_max_keysize;
6c2bb98b 247 int (*cia_setkey)(struct crypto_tfm *tfm, const u8 *key,
560c06ae 248 unsigned int keylen);
6c2bb98b
HX
249 void (*cia_encrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
250 void (*cia_decrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
1da177e4
LT
251};
252
253struct digest_alg {
254 unsigned int dia_digestsize;
6c2bb98b
HX
255 void (*dia_init)(struct crypto_tfm *tfm);
256 void (*dia_update)(struct crypto_tfm *tfm, const u8 *data,
257 unsigned int len);
258 void (*dia_final)(struct crypto_tfm *tfm, u8 *out);
259 int (*dia_setkey)(struct crypto_tfm *tfm, const u8 *key,
560c06ae 260 unsigned int keylen);
1da177e4
LT
261};
262
055bcee3
HX
263struct hash_alg {
264 int (*init)(struct hash_desc *desc);
265 int (*update)(struct hash_desc *desc, struct scatterlist *sg,
266 unsigned int nbytes);
267 int (*final)(struct hash_desc *desc, u8 *out);
268 int (*digest)(struct hash_desc *desc, struct scatterlist *sg,
269 unsigned int nbytes, u8 *out);
270 int (*setkey)(struct crypto_hash *tfm, const u8 *key,
271 unsigned int keylen);
272
273 unsigned int digestsize;
274};
275
1da177e4 276struct compress_alg {
6c2bb98b
HX
277 int (*coa_compress)(struct crypto_tfm *tfm, const u8 *src,
278 unsigned int slen, u8 *dst, unsigned int *dlen);
279 int (*coa_decompress)(struct crypto_tfm *tfm, const u8 *src,
280 unsigned int slen, u8 *dst, unsigned int *dlen);
1da177e4
LT
281};
282
17f0f4a4
NH
283struct rng_alg {
284 int (*rng_make_random)(struct crypto_rng *tfm, u8 *rdata,
285 unsigned int dlen);
286 int (*rng_reset)(struct crypto_rng *tfm, u8 *seed, unsigned int slen);
287
288 unsigned int seedsize;
289};
290
291
b5b7f088 292#define cra_ablkcipher cra_u.ablkcipher
1ae97820 293#define cra_aead cra_u.aead
5cde0af2 294#define cra_blkcipher cra_u.blkcipher
1da177e4
LT
295#define cra_cipher cra_u.cipher
296#define cra_digest cra_u.digest
055bcee3 297#define cra_hash cra_u.hash
1da177e4 298#define cra_compress cra_u.compress
17f0f4a4 299#define cra_rng cra_u.rng
1da177e4
LT
300
301struct crypto_alg {
302 struct list_head cra_list;
6bfd4809
HX
303 struct list_head cra_users;
304
1da177e4
LT
305 u32 cra_flags;
306 unsigned int cra_blocksize;
307 unsigned int cra_ctxsize;
95477377 308 unsigned int cra_alignmask;
5cb1454b
HX
309
310 int cra_priority;
6521f302 311 atomic_t cra_refcnt;
5cb1454b 312
d913ea0d
HX
313 char cra_name[CRYPTO_MAX_ALG_NAME];
314 char cra_driver_name[CRYPTO_MAX_ALG_NAME];
1da177e4 315
e853c3cf
HX
316 const struct crypto_type *cra_type;
317
1da177e4 318 union {
b5b7f088 319 struct ablkcipher_alg ablkcipher;
1ae97820 320 struct aead_alg aead;
5cde0af2 321 struct blkcipher_alg blkcipher;
1da177e4
LT
322 struct cipher_alg cipher;
323 struct digest_alg digest;
055bcee3 324 struct hash_alg hash;
1da177e4 325 struct compress_alg compress;
17f0f4a4 326 struct rng_alg rng;
1da177e4 327 } cra_u;
c7fc0599
HX
328
329 int (*cra_init)(struct crypto_tfm *tfm);
330 void (*cra_exit)(struct crypto_tfm *tfm);
6521f302 331 void (*cra_destroy)(struct crypto_alg *alg);
1da177e4
LT
332
333 struct module *cra_module;
334};
335
336/*
337 * Algorithm registration interface.
338 */
339int crypto_register_alg(struct crypto_alg *alg);
340int crypto_unregister_alg(struct crypto_alg *alg);
341
342/*
343 * Algorithm query interface.
344 */
fce32d70 345int crypto_has_alg(const char *name, u32 type, u32 mask);
1da177e4
LT
346
347/*
348 * Transforms: user-instantiated objects which encapsulate algorithms
6d7d684d
HX
349 * and core processing logic. Managed via crypto_alloc_*() and
350 * crypto_free_*(), as well as the various helpers below.
1da177e4 351 */
1da177e4 352
32e3983f
HX
353struct ablkcipher_tfm {
354 int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key,
355 unsigned int keylen);
356 int (*encrypt)(struct ablkcipher_request *req);
357 int (*decrypt)(struct ablkcipher_request *req);
61da88e2
HX
358 int (*givencrypt)(struct skcipher_givcrypt_request *req);
359 int (*givdecrypt)(struct skcipher_givcrypt_request *req);
360
ecfc4329
HX
361 struct crypto_ablkcipher *base;
362
32e3983f
HX
363 unsigned int ivsize;
364 unsigned int reqsize;
365};
366
1ae97820
HX
367struct aead_tfm {
368 int (*setkey)(struct crypto_aead *tfm, const u8 *key,
369 unsigned int keylen);
370 int (*encrypt)(struct aead_request *req);
371 int (*decrypt)(struct aead_request *req);
743edf57
HX
372 int (*givencrypt)(struct aead_givcrypt_request *req);
373 int (*givdecrypt)(struct aead_givcrypt_request *req);
5b6d2d7f
HX
374
375 struct crypto_aead *base;
376
1ae97820
HX
377 unsigned int ivsize;
378 unsigned int authsize;
379 unsigned int reqsize;
380};
381
5cde0af2
HX
382struct blkcipher_tfm {
383 void *iv;
384 int (*setkey)(struct crypto_tfm *tfm, const u8 *key,
385 unsigned int keylen);
386 int (*encrypt)(struct blkcipher_desc *desc, struct scatterlist *dst,
387 struct scatterlist *src, unsigned int nbytes);
388 int (*decrypt)(struct blkcipher_desc *desc, struct scatterlist *dst,
389 struct scatterlist *src, unsigned int nbytes);
390};
391
1da177e4 392struct cipher_tfm {
1da177e4
LT
393 int (*cit_setkey)(struct crypto_tfm *tfm,
394 const u8 *key, unsigned int keylen);
f28776a3
HX
395 void (*cit_encrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
396 void (*cit_decrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
1da177e4
LT
397};
398
055bcee3
HX
399struct hash_tfm {
400 int (*init)(struct hash_desc *desc);
401 int (*update)(struct hash_desc *desc,
402 struct scatterlist *sg, unsigned int nsg);
403 int (*final)(struct hash_desc *desc, u8 *out);
404 int (*digest)(struct hash_desc *desc, struct scatterlist *sg,
405 unsigned int nsg, u8 *out);
406 int (*setkey)(struct crypto_hash *tfm, const u8 *key,
407 unsigned int keylen);
055bcee3 408 unsigned int digestsize;
1da177e4
LT
409};
410
411struct compress_tfm {
412 int (*cot_compress)(struct crypto_tfm *tfm,
413 const u8 *src, unsigned int slen,
414 u8 *dst, unsigned int *dlen);
415 int (*cot_decompress)(struct crypto_tfm *tfm,
416 const u8 *src, unsigned int slen,
417 u8 *dst, unsigned int *dlen);
418};
419
17f0f4a4
NH
420struct rng_tfm {
421 int (*rng_gen_random)(struct crypto_rng *tfm, u8 *rdata,
422 unsigned int dlen);
423 int (*rng_reset)(struct crypto_rng *tfm, u8 *seed, unsigned int slen);
424};
425
32e3983f 426#define crt_ablkcipher crt_u.ablkcipher
1ae97820 427#define crt_aead crt_u.aead
5cde0af2 428#define crt_blkcipher crt_u.blkcipher
1da177e4 429#define crt_cipher crt_u.cipher
055bcee3 430#define crt_hash crt_u.hash
1da177e4 431#define crt_compress crt_u.compress
17f0f4a4 432#define crt_rng crt_u.rng
1da177e4
LT
433
434struct crypto_tfm {
435
436 u32 crt_flags;
437
438 union {
32e3983f 439 struct ablkcipher_tfm ablkcipher;
1ae97820 440 struct aead_tfm aead;
5cde0af2 441 struct blkcipher_tfm blkcipher;
1da177e4 442 struct cipher_tfm cipher;
055bcee3 443 struct hash_tfm hash;
1da177e4 444 struct compress_tfm compress;
17f0f4a4 445 struct rng_tfm rng;
1da177e4 446 } crt_u;
4a779486
HX
447
448 void (*exit)(struct crypto_tfm *tfm);
1da177e4
LT
449
450 struct crypto_alg *__crt_alg;
f10b7897 451
79911102 452 void *__crt_ctx[] CRYPTO_MINALIGN_ATTR;
1da177e4
LT
453};
454
32e3983f
HX
455struct crypto_ablkcipher {
456 struct crypto_tfm base;
457};
458
1ae97820
HX
459struct crypto_aead {
460 struct crypto_tfm base;
461};
462
5cde0af2
HX
463struct crypto_blkcipher {
464 struct crypto_tfm base;
465};
466
78a1fe4f
HX
467struct crypto_cipher {
468 struct crypto_tfm base;
469};
470
471struct crypto_comp {
472 struct crypto_tfm base;
473};
474
055bcee3
HX
475struct crypto_hash {
476 struct crypto_tfm base;
477};
478
17f0f4a4
NH
479struct crypto_rng {
480 struct crypto_tfm base;
481};
482
2b8c19db
HX
483enum {
484 CRYPTOA_UNSPEC,
485 CRYPTOA_ALG,
ebc610e5 486 CRYPTOA_TYPE,
39e1ee01 487 CRYPTOA_U32,
ebc610e5 488 __CRYPTOA_MAX,
2b8c19db
HX
489};
490
ebc610e5
HX
491#define CRYPTOA_MAX (__CRYPTOA_MAX - 1)
492
39e1ee01
HX
493/* Maximum number of (rtattr) parameters for each template. */
494#define CRYPTO_MAX_ATTRS 32
495
2b8c19db
HX
496struct crypto_attr_alg {
497 char name[CRYPTO_MAX_ALG_NAME];
498};
499
ebc610e5
HX
500struct crypto_attr_type {
501 u32 type;
502 u32 mask;
503};
504
39e1ee01
HX
505struct crypto_attr_u32 {
506 u32 num;
507};
508
1da177e4
LT
509/*
510 * Transform user interface.
511 */
512
6d7d684d 513struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask);
7b2cd92a
HX
514void crypto_destroy_tfm(void *mem, struct crypto_tfm *tfm);
515
516static inline void crypto_free_tfm(struct crypto_tfm *tfm)
517{
518 return crypto_destroy_tfm(tfm, tfm);
519}
1da177e4 520
da7f033d
HX
521int alg_test(const char *driver, const char *alg, u32 type, u32 mask);
522
1da177e4
LT
523/*
524 * Transform helpers which query the underlying algorithm.
525 */
526static inline const char *crypto_tfm_alg_name(struct crypto_tfm *tfm)
527{
528 return tfm->__crt_alg->cra_name;
529}
530
b14cdd67
ML
531static inline const char *crypto_tfm_alg_driver_name(struct crypto_tfm *tfm)
532{
533 return tfm->__crt_alg->cra_driver_name;
534}
535
536static inline int crypto_tfm_alg_priority(struct crypto_tfm *tfm)
537{
538 return tfm->__crt_alg->cra_priority;
539}
540
1da177e4
LT
541static inline const char *crypto_tfm_alg_modname(struct crypto_tfm *tfm)
542{
543 return module_name(tfm->__crt_alg->cra_module);
544}
545
546static inline u32 crypto_tfm_alg_type(struct crypto_tfm *tfm)
547{
548 return tfm->__crt_alg->cra_flags & CRYPTO_ALG_TYPE_MASK;
549}
550
1da177e4
LT
551static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm *tfm)
552{
553 return tfm->__crt_alg->cra_blocksize;
554}
555
fbdae9f3
HX
556static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm *tfm)
557{
558 return tfm->__crt_alg->cra_alignmask;
559}
560
f28776a3
HX
561static inline u32 crypto_tfm_get_flags(struct crypto_tfm *tfm)
562{
563 return tfm->crt_flags;
564}
565
566static inline void crypto_tfm_set_flags(struct crypto_tfm *tfm, u32 flags)
567{
568 tfm->crt_flags |= flags;
569}
570
571static inline void crypto_tfm_clear_flags(struct crypto_tfm *tfm, u32 flags)
572{
573 tfm->crt_flags &= ~flags;
574}
575
40725181
HX
576static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm)
577{
f10b7897
HX
578 return tfm->__crt_ctx;
579}
580
581static inline unsigned int crypto_tfm_ctx_alignment(void)
582{
583 struct crypto_tfm *tfm;
584 return __alignof__(tfm->__crt_ctx);
40725181
HX
585}
586
1da177e4
LT
587/*
588 * API wrappers.
589 */
32e3983f
HX
590static inline struct crypto_ablkcipher *__crypto_ablkcipher_cast(
591 struct crypto_tfm *tfm)
592{
593 return (struct crypto_ablkcipher *)tfm;
594}
595
378f4f51 596static inline u32 crypto_skcipher_type(u32 type)
32e3983f 597{
ecfc4329 598 type &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
32e3983f 599 type |= CRYPTO_ALG_TYPE_BLKCIPHER;
378f4f51
HX
600 return type;
601}
602
603static inline u32 crypto_skcipher_mask(u32 mask)
604{
ecfc4329 605 mask &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
332f8840 606 mask |= CRYPTO_ALG_TYPE_BLKCIPHER_MASK;
378f4f51
HX
607 return mask;
608}
32e3983f 609
b9c55aa4
HX
610struct crypto_ablkcipher *crypto_alloc_ablkcipher(const char *alg_name,
611 u32 type, u32 mask);
32e3983f
HX
612
613static inline struct crypto_tfm *crypto_ablkcipher_tfm(
614 struct crypto_ablkcipher *tfm)
615{
616 return &tfm->base;
617}
618
619static inline void crypto_free_ablkcipher(struct crypto_ablkcipher *tfm)
620{
621 crypto_free_tfm(crypto_ablkcipher_tfm(tfm));
622}
623
624static inline int crypto_has_ablkcipher(const char *alg_name, u32 type,
625 u32 mask)
626{
378f4f51
HX
627 return crypto_has_alg(alg_name, crypto_skcipher_type(type),
628 crypto_skcipher_mask(mask));
32e3983f
HX
629}
630
631static inline struct ablkcipher_tfm *crypto_ablkcipher_crt(
632 struct crypto_ablkcipher *tfm)
633{
634 return &crypto_ablkcipher_tfm(tfm)->crt_ablkcipher;
635}
636
637static inline unsigned int crypto_ablkcipher_ivsize(
638 struct crypto_ablkcipher *tfm)
639{
640 return crypto_ablkcipher_crt(tfm)->ivsize;
641}
642
643static inline unsigned int crypto_ablkcipher_blocksize(
644 struct crypto_ablkcipher *tfm)
645{
646 return crypto_tfm_alg_blocksize(crypto_ablkcipher_tfm(tfm));
647}
648
649static inline unsigned int crypto_ablkcipher_alignmask(
650 struct crypto_ablkcipher *tfm)
651{
652 return crypto_tfm_alg_alignmask(crypto_ablkcipher_tfm(tfm));
653}
654
655static inline u32 crypto_ablkcipher_get_flags(struct crypto_ablkcipher *tfm)
656{
657 return crypto_tfm_get_flags(crypto_ablkcipher_tfm(tfm));
658}
659
660static inline void crypto_ablkcipher_set_flags(struct crypto_ablkcipher *tfm,
661 u32 flags)
662{
663 crypto_tfm_set_flags(crypto_ablkcipher_tfm(tfm), flags);
664}
665
666static inline void crypto_ablkcipher_clear_flags(struct crypto_ablkcipher *tfm,
667 u32 flags)
668{
669 crypto_tfm_clear_flags(crypto_ablkcipher_tfm(tfm), flags);
670}
671
672static inline int crypto_ablkcipher_setkey(struct crypto_ablkcipher *tfm,
673 const u8 *key, unsigned int keylen)
674{
ecfc4329
HX
675 struct ablkcipher_tfm *crt = crypto_ablkcipher_crt(tfm);
676
677 return crt->setkey(crt->base, key, keylen);
32e3983f
HX
678}
679
680static inline struct crypto_ablkcipher *crypto_ablkcipher_reqtfm(
681 struct ablkcipher_request *req)
682{
683 return __crypto_ablkcipher_cast(req->base.tfm);
684}
685
686static inline int crypto_ablkcipher_encrypt(struct ablkcipher_request *req)
687{
688 struct ablkcipher_tfm *crt =
689 crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req));
690 return crt->encrypt(req);
691}
692
693static inline int crypto_ablkcipher_decrypt(struct ablkcipher_request *req)
694{
695 struct ablkcipher_tfm *crt =
696 crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req));
697 return crt->decrypt(req);
698}
699
b16c3a2e
HX
700static inline unsigned int crypto_ablkcipher_reqsize(
701 struct crypto_ablkcipher *tfm)
32e3983f
HX
702{
703 return crypto_ablkcipher_crt(tfm)->reqsize;
704}
705
e196d625
HX
706static inline void ablkcipher_request_set_tfm(
707 struct ablkcipher_request *req, struct crypto_ablkcipher *tfm)
708{
ecfc4329 709 req->base.tfm = crypto_ablkcipher_tfm(crypto_ablkcipher_crt(tfm)->base);
e196d625
HX
710}
711
b5b7f088
HX
712static inline struct ablkcipher_request *ablkcipher_request_cast(
713 struct crypto_async_request *req)
714{
715 return container_of(req, struct ablkcipher_request, base);
716}
717
32e3983f
HX
718static inline struct ablkcipher_request *ablkcipher_request_alloc(
719 struct crypto_ablkcipher *tfm, gfp_t gfp)
720{
721 struct ablkcipher_request *req;
722
723 req = kmalloc(sizeof(struct ablkcipher_request) +
724 crypto_ablkcipher_reqsize(tfm), gfp);
725
726 if (likely(req))
e196d625 727 ablkcipher_request_set_tfm(req, tfm);
32e3983f
HX
728
729 return req;
730}
731
732static inline void ablkcipher_request_free(struct ablkcipher_request *req)
733{
aef73cfc 734 kzfree(req);
32e3983f
HX
735}
736
737static inline void ablkcipher_request_set_callback(
738 struct ablkcipher_request *req,
739 u32 flags, crypto_completion_t complete, void *data)
740{
741 req->base.complete = complete;
742 req->base.data = data;
743 req->base.flags = flags;
744}
745
746static inline void ablkcipher_request_set_crypt(
747 struct ablkcipher_request *req,
748 struct scatterlist *src, struct scatterlist *dst,
749 unsigned int nbytes, void *iv)
750{
751 req->src = src;
752 req->dst = dst;
753 req->nbytes = nbytes;
754 req->info = iv;
755}
756
1ae97820
HX
757static inline struct crypto_aead *__crypto_aead_cast(struct crypto_tfm *tfm)
758{
759 return (struct crypto_aead *)tfm;
760}
761
d29ce988 762struct crypto_aead *crypto_alloc_aead(const char *alg_name, u32 type, u32 mask);
1ae97820
HX
763
764static inline struct crypto_tfm *crypto_aead_tfm(struct crypto_aead *tfm)
765{
766 return &tfm->base;
767}
768
769static inline void crypto_free_aead(struct crypto_aead *tfm)
770{
771 crypto_free_tfm(crypto_aead_tfm(tfm));
772}
773
774static inline struct aead_tfm *crypto_aead_crt(struct crypto_aead *tfm)
775{
776 return &crypto_aead_tfm(tfm)->crt_aead;
777}
778
779static inline unsigned int crypto_aead_ivsize(struct crypto_aead *tfm)
780{
781 return crypto_aead_crt(tfm)->ivsize;
782}
783
784static inline unsigned int crypto_aead_authsize(struct crypto_aead *tfm)
785{
786 return crypto_aead_crt(tfm)->authsize;
787}
788
789static inline unsigned int crypto_aead_blocksize(struct crypto_aead *tfm)
790{
791 return crypto_tfm_alg_blocksize(crypto_aead_tfm(tfm));
792}
793
794static inline unsigned int crypto_aead_alignmask(struct crypto_aead *tfm)
795{
796 return crypto_tfm_alg_alignmask(crypto_aead_tfm(tfm));
797}
798
799static inline u32 crypto_aead_get_flags(struct crypto_aead *tfm)
800{
801 return crypto_tfm_get_flags(crypto_aead_tfm(tfm));
802}
803
804static inline void crypto_aead_set_flags(struct crypto_aead *tfm, u32 flags)
805{
806 crypto_tfm_set_flags(crypto_aead_tfm(tfm), flags);
807}
808
809static inline void crypto_aead_clear_flags(struct crypto_aead *tfm, u32 flags)
810{
811 crypto_tfm_clear_flags(crypto_aead_tfm(tfm), flags);
812}
813
814static inline int crypto_aead_setkey(struct crypto_aead *tfm, const u8 *key,
815 unsigned int keylen)
816{
5b6d2d7f
HX
817 struct aead_tfm *crt = crypto_aead_crt(tfm);
818
819 return crt->setkey(crt->base, key, keylen);
1ae97820
HX
820}
821
7ba683a6
HX
822int crypto_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize);
823
1ae97820
HX
824static inline struct crypto_aead *crypto_aead_reqtfm(struct aead_request *req)
825{
826 return __crypto_aead_cast(req->base.tfm);
827}
828
829static inline int crypto_aead_encrypt(struct aead_request *req)
830{
831 return crypto_aead_crt(crypto_aead_reqtfm(req))->encrypt(req);
832}
833
834static inline int crypto_aead_decrypt(struct aead_request *req)
835{
836 return crypto_aead_crt(crypto_aead_reqtfm(req))->decrypt(req);
837}
838
b16c3a2e 839static inline unsigned int crypto_aead_reqsize(struct crypto_aead *tfm)
1ae97820
HX
840{
841 return crypto_aead_crt(tfm)->reqsize;
842}
843
844static inline void aead_request_set_tfm(struct aead_request *req,
845 struct crypto_aead *tfm)
846{
5b6d2d7f 847 req->base.tfm = crypto_aead_tfm(crypto_aead_crt(tfm)->base);
1ae97820
HX
848}
849
850static inline struct aead_request *aead_request_alloc(struct crypto_aead *tfm,
851 gfp_t gfp)
852{
853 struct aead_request *req;
854
855 req = kmalloc(sizeof(*req) + crypto_aead_reqsize(tfm), gfp);
856
857 if (likely(req))
858 aead_request_set_tfm(req, tfm);
859
860 return req;
861}
862
863static inline void aead_request_free(struct aead_request *req)
864{
aef73cfc 865 kzfree(req);
1ae97820
HX
866}
867
868static inline void aead_request_set_callback(struct aead_request *req,
869 u32 flags,
870 crypto_completion_t complete,
871 void *data)
872{
873 req->base.complete = complete;
874 req->base.data = data;
875 req->base.flags = flags;
876}
877
878static inline void aead_request_set_crypt(struct aead_request *req,
879 struct scatterlist *src,
880 struct scatterlist *dst,
881 unsigned int cryptlen, u8 *iv)
882{
883 req->src = src;
884 req->dst = dst;
885 req->cryptlen = cryptlen;
886 req->iv = iv;
887}
888
889static inline void aead_request_set_assoc(struct aead_request *req,
890 struct scatterlist *assoc,
891 unsigned int assoclen)
892{
893 req->assoc = assoc;
894 req->assoclen = assoclen;
895}
896
5cde0af2
HX
897static inline struct crypto_blkcipher *__crypto_blkcipher_cast(
898 struct crypto_tfm *tfm)
899{
900 return (struct crypto_blkcipher *)tfm;
901}
902
903static inline struct crypto_blkcipher *crypto_blkcipher_cast(
904 struct crypto_tfm *tfm)
905{
906 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_BLKCIPHER);
907 return __crypto_blkcipher_cast(tfm);
908}
909
910static inline struct crypto_blkcipher *crypto_alloc_blkcipher(
911 const char *alg_name, u32 type, u32 mask)
912{
332f8840 913 type &= ~CRYPTO_ALG_TYPE_MASK;
5cde0af2 914 type |= CRYPTO_ALG_TYPE_BLKCIPHER;
332f8840 915 mask |= CRYPTO_ALG_TYPE_MASK;
5cde0af2
HX
916
917 return __crypto_blkcipher_cast(crypto_alloc_base(alg_name, type, mask));
918}
919
920static inline struct crypto_tfm *crypto_blkcipher_tfm(
921 struct crypto_blkcipher *tfm)
922{
923 return &tfm->base;
924}
925
926static inline void crypto_free_blkcipher(struct crypto_blkcipher *tfm)
927{
928 crypto_free_tfm(crypto_blkcipher_tfm(tfm));
929}
930
fce32d70
HX
931static inline int crypto_has_blkcipher(const char *alg_name, u32 type, u32 mask)
932{
332f8840 933 type &= ~CRYPTO_ALG_TYPE_MASK;
fce32d70 934 type |= CRYPTO_ALG_TYPE_BLKCIPHER;
332f8840 935 mask |= CRYPTO_ALG_TYPE_MASK;
fce32d70
HX
936
937 return crypto_has_alg(alg_name, type, mask);
938}
939
5cde0af2
HX
940static inline const char *crypto_blkcipher_name(struct crypto_blkcipher *tfm)
941{
942 return crypto_tfm_alg_name(crypto_blkcipher_tfm(tfm));
943}
944
945static inline struct blkcipher_tfm *crypto_blkcipher_crt(
946 struct crypto_blkcipher *tfm)
947{
948 return &crypto_blkcipher_tfm(tfm)->crt_blkcipher;
949}
950
951static inline struct blkcipher_alg *crypto_blkcipher_alg(
952 struct crypto_blkcipher *tfm)
953{
954 return &crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher;
955}
956
957static inline unsigned int crypto_blkcipher_ivsize(struct crypto_blkcipher *tfm)
958{
959 return crypto_blkcipher_alg(tfm)->ivsize;
960}
961
962static inline unsigned int crypto_blkcipher_blocksize(
963 struct crypto_blkcipher *tfm)
964{
965 return crypto_tfm_alg_blocksize(crypto_blkcipher_tfm(tfm));
966}
967
968static inline unsigned int crypto_blkcipher_alignmask(
969 struct crypto_blkcipher *tfm)
970{
971 return crypto_tfm_alg_alignmask(crypto_blkcipher_tfm(tfm));
972}
973
974static inline u32 crypto_blkcipher_get_flags(struct crypto_blkcipher *tfm)
975{
976 return crypto_tfm_get_flags(crypto_blkcipher_tfm(tfm));
977}
978
979static inline void crypto_blkcipher_set_flags(struct crypto_blkcipher *tfm,
980 u32 flags)
981{
982 crypto_tfm_set_flags(crypto_blkcipher_tfm(tfm), flags);
983}
984
985static inline void crypto_blkcipher_clear_flags(struct crypto_blkcipher *tfm,
986 u32 flags)
987{
988 crypto_tfm_clear_flags(crypto_blkcipher_tfm(tfm), flags);
989}
990
991static inline int crypto_blkcipher_setkey(struct crypto_blkcipher *tfm,
992 const u8 *key, unsigned int keylen)
993{
994 return crypto_blkcipher_crt(tfm)->setkey(crypto_blkcipher_tfm(tfm),
995 key, keylen);
996}
997
998static inline int crypto_blkcipher_encrypt(struct blkcipher_desc *desc,
999 struct scatterlist *dst,
1000 struct scatterlist *src,
1001 unsigned int nbytes)
1002{
1003 desc->info = crypto_blkcipher_crt(desc->tfm)->iv;
1004 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes);
1005}
1006
1007static inline int crypto_blkcipher_encrypt_iv(struct blkcipher_desc *desc,
1008 struct scatterlist *dst,
1009 struct scatterlist *src,
1010 unsigned int nbytes)
1011{
1012 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes);
1013}
1014
1015static inline int crypto_blkcipher_decrypt(struct blkcipher_desc *desc,
1016 struct scatterlist *dst,
1017 struct scatterlist *src,
1018 unsigned int nbytes)
1019{
1020 desc->info = crypto_blkcipher_crt(desc->tfm)->iv;
1021 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes);
1022}
1023
1024static inline int crypto_blkcipher_decrypt_iv(struct blkcipher_desc *desc,
1025 struct scatterlist *dst,
1026 struct scatterlist *src,
1027 unsigned int nbytes)
1028{
1029 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes);
1030}
1031
1032static inline void crypto_blkcipher_set_iv(struct crypto_blkcipher *tfm,
1033 const u8 *src, unsigned int len)
1034{
1035 memcpy(crypto_blkcipher_crt(tfm)->iv, src, len);
1036}
1037
1038static inline void crypto_blkcipher_get_iv(struct crypto_blkcipher *tfm,
1039 u8 *dst, unsigned int len)
1040{
1041 memcpy(dst, crypto_blkcipher_crt(tfm)->iv, len);
1042}
1043
f28776a3
HX
1044static inline struct crypto_cipher *__crypto_cipher_cast(struct crypto_tfm *tfm)
1045{
1046 return (struct crypto_cipher *)tfm;
1047}
1048
1049static inline struct crypto_cipher *crypto_cipher_cast(struct crypto_tfm *tfm)
1050{
1051 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
1052 return __crypto_cipher_cast(tfm);
1053}
1054
1055static inline struct crypto_cipher *crypto_alloc_cipher(const char *alg_name,
1056 u32 type, u32 mask)
1057{
1058 type &= ~CRYPTO_ALG_TYPE_MASK;
1059 type |= CRYPTO_ALG_TYPE_CIPHER;
1060 mask |= CRYPTO_ALG_TYPE_MASK;
1061
1062 return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask));
1063}
1064
1065static inline struct crypto_tfm *crypto_cipher_tfm(struct crypto_cipher *tfm)
1066{
78a1fe4f 1067 return &tfm->base;
f28776a3
HX
1068}
1069
1070static inline void crypto_free_cipher(struct crypto_cipher *tfm)
1071{
1072 crypto_free_tfm(crypto_cipher_tfm(tfm));
1073}
1074
fce32d70
HX
1075static inline int crypto_has_cipher(const char *alg_name, u32 type, u32 mask)
1076{
1077 type &= ~CRYPTO_ALG_TYPE_MASK;
1078 type |= CRYPTO_ALG_TYPE_CIPHER;
1079 mask |= CRYPTO_ALG_TYPE_MASK;
1080
1081 return crypto_has_alg(alg_name, type, mask);
1082}
1083
f28776a3
HX
1084static inline struct cipher_tfm *crypto_cipher_crt(struct crypto_cipher *tfm)
1085{
1086 return &crypto_cipher_tfm(tfm)->crt_cipher;
1087}
1088
1089static inline unsigned int crypto_cipher_blocksize(struct crypto_cipher *tfm)
1090{
1091 return crypto_tfm_alg_blocksize(crypto_cipher_tfm(tfm));
1092}
1093
1094static inline unsigned int crypto_cipher_alignmask(struct crypto_cipher *tfm)
1095{
1096 return crypto_tfm_alg_alignmask(crypto_cipher_tfm(tfm));
1097}
1098
1099static inline u32 crypto_cipher_get_flags(struct crypto_cipher *tfm)
1100{
1101 return crypto_tfm_get_flags(crypto_cipher_tfm(tfm));
1102}
1103
1104static inline void crypto_cipher_set_flags(struct crypto_cipher *tfm,
1105 u32 flags)
1106{
1107 crypto_tfm_set_flags(crypto_cipher_tfm(tfm), flags);
1108}
1109
1110static inline void crypto_cipher_clear_flags(struct crypto_cipher *tfm,
1111 u32 flags)
1112{
1113 crypto_tfm_clear_flags(crypto_cipher_tfm(tfm), flags);
1114}
1115
7226bc87
HX
1116static inline int crypto_cipher_setkey(struct crypto_cipher *tfm,
1117 const u8 *key, unsigned int keylen)
1118{
1119 return crypto_cipher_crt(tfm)->cit_setkey(crypto_cipher_tfm(tfm),
1120 key, keylen);
1121}
1122
f28776a3
HX
1123static inline void crypto_cipher_encrypt_one(struct crypto_cipher *tfm,
1124 u8 *dst, const u8 *src)
1125{
1126 crypto_cipher_crt(tfm)->cit_encrypt_one(crypto_cipher_tfm(tfm),
1127 dst, src);
1128}
1129
1130static inline void crypto_cipher_decrypt_one(struct crypto_cipher *tfm,
1131 u8 *dst, const u8 *src)
1132{
1133 crypto_cipher_crt(tfm)->cit_decrypt_one(crypto_cipher_tfm(tfm),
1134 dst, src);
1135}
1136
055bcee3 1137static inline struct crypto_hash *__crypto_hash_cast(struct crypto_tfm *tfm)
1da177e4 1138{
055bcee3 1139 return (struct crypto_hash *)tfm;
1da177e4
LT
1140}
1141
055bcee3 1142static inline struct crypto_hash *crypto_hash_cast(struct crypto_tfm *tfm)
1da177e4 1143{
055bcee3
HX
1144 BUG_ON((crypto_tfm_alg_type(tfm) ^ CRYPTO_ALG_TYPE_HASH) &
1145 CRYPTO_ALG_TYPE_HASH_MASK);
1146 return __crypto_hash_cast(tfm);
1da177e4
LT
1147}
1148
055bcee3
HX
1149static inline struct crypto_hash *crypto_alloc_hash(const char *alg_name,
1150 u32 type, u32 mask)
1da177e4 1151{
055bcee3 1152 type &= ~CRYPTO_ALG_TYPE_MASK;
551a09a7 1153 mask &= ~CRYPTO_ALG_TYPE_MASK;
055bcee3
HX
1154 type |= CRYPTO_ALG_TYPE_HASH;
1155 mask |= CRYPTO_ALG_TYPE_HASH_MASK;
1156
1157 return __crypto_hash_cast(crypto_alloc_base(alg_name, type, mask));
1da177e4
LT
1158}
1159
055bcee3 1160static inline struct crypto_tfm *crypto_hash_tfm(struct crypto_hash *tfm)
1da177e4 1161{
055bcee3
HX
1162 return &tfm->base;
1163}
1164
1165static inline void crypto_free_hash(struct crypto_hash *tfm)
1166{
1167 crypto_free_tfm(crypto_hash_tfm(tfm));
1168}
1169
fce32d70
HX
1170static inline int crypto_has_hash(const char *alg_name, u32 type, u32 mask)
1171{
1172 type &= ~CRYPTO_ALG_TYPE_MASK;
551a09a7 1173 mask &= ~CRYPTO_ALG_TYPE_MASK;
fce32d70
HX
1174 type |= CRYPTO_ALG_TYPE_HASH;
1175 mask |= CRYPTO_ALG_TYPE_HASH_MASK;
1176
1177 return crypto_has_alg(alg_name, type, mask);
1178}
1179
055bcee3
HX
1180static inline struct hash_tfm *crypto_hash_crt(struct crypto_hash *tfm)
1181{
1182 return &crypto_hash_tfm(tfm)->crt_hash;
1183}
1184
1185static inline unsigned int crypto_hash_blocksize(struct crypto_hash *tfm)
1186{
1187 return crypto_tfm_alg_blocksize(crypto_hash_tfm(tfm));
1188}
1189
1190static inline unsigned int crypto_hash_alignmask(struct crypto_hash *tfm)
1191{
1192 return crypto_tfm_alg_alignmask(crypto_hash_tfm(tfm));
1193}
1194
1195static inline unsigned int crypto_hash_digestsize(struct crypto_hash *tfm)
1196{
1197 return crypto_hash_crt(tfm)->digestsize;
1198}
1199
1200static inline u32 crypto_hash_get_flags(struct crypto_hash *tfm)
1201{
1202 return crypto_tfm_get_flags(crypto_hash_tfm(tfm));
1203}
1204
1205static inline void crypto_hash_set_flags(struct crypto_hash *tfm, u32 flags)
1206{
1207 crypto_tfm_set_flags(crypto_hash_tfm(tfm), flags);
1208}
1209
1210static inline void crypto_hash_clear_flags(struct crypto_hash *tfm, u32 flags)
1211{
1212 crypto_tfm_clear_flags(crypto_hash_tfm(tfm), flags);
1213}
1214
1215static inline int crypto_hash_init(struct hash_desc *desc)
1216{
1217 return crypto_hash_crt(desc->tfm)->init(desc);
1218}
1219
1220static inline int crypto_hash_update(struct hash_desc *desc,
1221 struct scatterlist *sg,
1222 unsigned int nbytes)
1223{
1224 return crypto_hash_crt(desc->tfm)->update(desc, sg, nbytes);
1225}
1226
1227static inline int crypto_hash_final(struct hash_desc *desc, u8 *out)
1228{
1229 return crypto_hash_crt(desc->tfm)->final(desc, out);
1230}
1231
1232static inline int crypto_hash_digest(struct hash_desc *desc,
1233 struct scatterlist *sg,
1234 unsigned int nbytes, u8 *out)
1235{
1236 return crypto_hash_crt(desc->tfm)->digest(desc, sg, nbytes, out);
1237}
1238
1239static inline int crypto_hash_setkey(struct crypto_hash *hash,
1240 const u8 *key, unsigned int keylen)
1241{
1242 return crypto_hash_crt(hash)->setkey(hash, key, keylen);
1da177e4
LT
1243}
1244
fce32d70
HX
1245static inline struct crypto_comp *__crypto_comp_cast(struct crypto_tfm *tfm)
1246{
1247 return (struct crypto_comp *)tfm;
1248}
1249
1250static inline struct crypto_comp *crypto_comp_cast(struct crypto_tfm *tfm)
1251{
1252 BUG_ON((crypto_tfm_alg_type(tfm) ^ CRYPTO_ALG_TYPE_COMPRESS) &
1253 CRYPTO_ALG_TYPE_MASK);
1254 return __crypto_comp_cast(tfm);
1255}
1256
1257static inline struct crypto_comp *crypto_alloc_comp(const char *alg_name,
1258 u32 type, u32 mask)
1259{
1260 type &= ~CRYPTO_ALG_TYPE_MASK;
1261 type |= CRYPTO_ALG_TYPE_COMPRESS;
1262 mask |= CRYPTO_ALG_TYPE_MASK;
1263
1264 return __crypto_comp_cast(crypto_alloc_base(alg_name, type, mask));
1265}
1266
1267static inline struct crypto_tfm *crypto_comp_tfm(struct crypto_comp *tfm)
1268{
78a1fe4f 1269 return &tfm->base;
fce32d70
HX
1270}
1271
1272static inline void crypto_free_comp(struct crypto_comp *tfm)
1273{
1274 crypto_free_tfm(crypto_comp_tfm(tfm));
1275}
1276
1277static inline int crypto_has_comp(const char *alg_name, u32 type, u32 mask)
1278{
1279 type &= ~CRYPTO_ALG_TYPE_MASK;
1280 type |= CRYPTO_ALG_TYPE_COMPRESS;
1281 mask |= CRYPTO_ALG_TYPE_MASK;
1282
1283 return crypto_has_alg(alg_name, type, mask);
1284}
1285
e4d5b79c
HX
1286static inline const char *crypto_comp_name(struct crypto_comp *tfm)
1287{
1288 return crypto_tfm_alg_name(crypto_comp_tfm(tfm));
1289}
1290
fce32d70
HX
1291static inline struct compress_tfm *crypto_comp_crt(struct crypto_comp *tfm)
1292{
1293 return &crypto_comp_tfm(tfm)->crt_compress;
1294}
1295
1296static inline int crypto_comp_compress(struct crypto_comp *tfm,
1da177e4
LT
1297 const u8 *src, unsigned int slen,
1298 u8 *dst, unsigned int *dlen)
1299{
78a1fe4f
HX
1300 return crypto_comp_crt(tfm)->cot_compress(crypto_comp_tfm(tfm),
1301 src, slen, dst, dlen);
1da177e4
LT
1302}
1303
fce32d70 1304static inline int crypto_comp_decompress(struct crypto_comp *tfm,
1da177e4
LT
1305 const u8 *src, unsigned int slen,
1306 u8 *dst, unsigned int *dlen)
1307{
78a1fe4f
HX
1308 return crypto_comp_crt(tfm)->cot_decompress(crypto_comp_tfm(tfm),
1309 src, slen, dst, dlen);
1da177e4
LT
1310}
1311
1da177e4
LT
1312#endif /* _LINUX_CRYPTO_H */
1313