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