2 * Scatterlist Cryptographic API.
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 David S. Miller (davem@redhat.com)
6 * Copyright (c) 2005 Herbert Xu <herbert@gondor.apana.org.au>
8 * Portions derived from Cryptoapi, by Alexander Kjeldaas <astor@fast.no>
9 * and Nettle, by Niels Möller.
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)
17 #ifndef _LINUX_CRYPTO_H
18 #define _LINUX_CRYPTO_H
20 #include <asm/atomic.h>
21 #include <linux/module.h>
22 #include <linux/kernel.h>
23 #include <linux/list.h>
24 #include <linux/slab.h>
25 #include <linux/string.h>
26 #include <linux/uaccess.h>
29 * Algorithm masks and types.
31 #define CRYPTO_ALG_TYPE_MASK 0x0000000f
32 #define CRYPTO_ALG_TYPE_CIPHER 0x00000001
33 #define CRYPTO_ALG_TYPE_COMPRESS 0x00000002
34 #define CRYPTO_ALG_TYPE_AEAD 0x00000003
35 #define CRYPTO_ALG_TYPE_BLKCIPHER 0x00000004
36 #define CRYPTO_ALG_TYPE_ABLKCIPHER 0x00000005
37 #define CRYPTO_ALG_TYPE_GIVCIPHER 0x00000006
38 #define CRYPTO_ALG_TYPE_DIGEST 0x00000008
39 #define CRYPTO_ALG_TYPE_HASH 0x00000008
40 #define CRYPTO_ALG_TYPE_SHASH 0x00000009
41 #define CRYPTO_ALG_TYPE_AHASH 0x0000000a
42 #define CRYPTO_ALG_TYPE_RNG 0x0000000c
43 #define CRYPTO_ALG_TYPE_PCOMPRESS 0x0000000f
45 #define CRYPTO_ALG_TYPE_HASH_MASK 0x0000000e
46 #define CRYPTO_ALG_TYPE_AHASH_MASK 0x0000000c
47 #define CRYPTO_ALG_TYPE_BLKCIPHER_MASK 0x0000000c
49 #define CRYPTO_ALG_LARVAL 0x00000010
50 #define CRYPTO_ALG_DEAD 0x00000020
51 #define CRYPTO_ALG_DYING 0x00000040
52 #define CRYPTO_ALG_ASYNC 0x00000080
55 * Set this bit if and only if the algorithm requires another algorithm of
56 * the same type to handle corner cases.
58 #define CRYPTO_ALG_NEED_FALLBACK 0x00000100
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.
64 #define CRYPTO_ALG_GENIV 0x00000200
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
72 #define CRYPTO_ALG_TESTED 0x00000400
75 * Transform masks and values (for crt_flags).
77 #define CRYPTO_TFM_REQ_MASK 0x000fff00
78 #define CRYPTO_TFM_RES_MASK 0xfff00000
80 #define CRYPTO_TFM_REQ_WEAK_KEY 0x00000100
81 #define CRYPTO_TFM_REQ_MAY_SLEEP 0x00000200
82 #define CRYPTO_TFM_REQ_MAY_BACKLOG 0x00000400
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
90 * Miscellaneous stuff.
92 #define CRYPTO_MAX_ALG_NAME 64
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.
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
107 #define CRYPTO_MINALIGN __alignof__(unsigned long long)
110 #define CRYPTO_MINALIGN_ATTR __attribute__ ((__aligned__(CRYPTO_MINALIGN)))
113 struct crypto_ablkcipher
;
114 struct crypto_async_request
;
116 struct crypto_blkcipher
;
121 struct aead_givcrypt_request
;
122 struct skcipher_givcrypt_request
;
124 typedef void (*crypto_completion_t
)(struct crypto_async_request
*req
, int err
);
126 struct crypto_async_request
{
127 struct list_head list
;
128 crypto_completion_t complete
;
130 struct crypto_tfm
*tfm
;
135 struct ablkcipher_request
{
136 struct crypto_async_request base
;
142 struct scatterlist
*src
;
143 struct scatterlist
*dst
;
145 void *__ctx
[] CRYPTO_MINALIGN_ATTR
;
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
156 * @dst: Destination data
157 * @__ctx: Start of private context data
159 struct aead_request
{
160 struct crypto_async_request base
;
162 unsigned int assoclen
;
163 unsigned int cryptlen
;
167 struct scatterlist
*assoc
;
168 struct scatterlist
*src
;
169 struct scatterlist
*dst
;
171 void *__ctx
[] CRYPTO_MINALIGN_ATTR
;
174 struct blkcipher_desc
{
175 struct crypto_blkcipher
*tfm
;
181 struct crypto_tfm
*tfm
;
182 void (*crfn
)(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
);
183 unsigned int (*prfn
)(const struct cipher_desc
*desc
, u8
*dst
,
184 const u8
*src
, unsigned int nbytes
);
189 struct crypto_hash
*tfm
;
194 * Algorithms: modular crypto algorithm implementations, managed
195 * via crypto_register_alg() and crypto_unregister_alg().
197 struct 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
);
202 int (*givencrypt
)(struct skcipher_givcrypt_request
*req
);
203 int (*givdecrypt
)(struct skcipher_givcrypt_request
*req
);
207 unsigned int min_keysize
;
208 unsigned int max_keysize
;
213 int (*setkey
)(struct crypto_aead
*tfm
, const u8
*key
,
214 unsigned int keylen
);
215 int (*setauthsize
)(struct crypto_aead
*tfm
, unsigned int authsize
);
216 int (*encrypt
)(struct aead_request
*req
);
217 int (*decrypt
)(struct aead_request
*req
);
218 int (*givencrypt
)(struct aead_givcrypt_request
*req
);
219 int (*givdecrypt
)(struct aead_givcrypt_request
*req
);
224 unsigned int maxauthsize
;
227 struct 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
);
239 unsigned int min_keysize
;
240 unsigned int max_keysize
;
245 unsigned int cia_min_keysize
;
246 unsigned int cia_max_keysize
;
247 int (*cia_setkey
)(struct crypto_tfm
*tfm
, const u8
*key
,
248 unsigned int keylen
);
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
);
253 struct compress_alg
{
254 int (*coa_compress
)(struct crypto_tfm
*tfm
, const u8
*src
,
255 unsigned int slen
, u8
*dst
, unsigned int *dlen
);
256 int (*coa_decompress
)(struct crypto_tfm
*tfm
, const u8
*src
,
257 unsigned int slen
, u8
*dst
, unsigned int *dlen
);
261 int (*rng_make_random
)(struct crypto_rng
*tfm
, u8
*rdata
,
263 int (*rng_reset
)(struct crypto_rng
*tfm
, u8
*seed
, unsigned int slen
);
265 unsigned int seedsize
;
269 #define cra_ablkcipher cra_u.ablkcipher
270 #define cra_aead cra_u.aead
271 #define cra_blkcipher cra_u.blkcipher
272 #define cra_cipher cra_u.cipher
273 #define cra_compress cra_u.compress
274 #define cra_rng cra_u.rng
277 struct list_head cra_list
;
278 struct list_head cra_users
;
281 unsigned int cra_blocksize
;
282 unsigned int cra_ctxsize
;
283 unsigned int cra_alignmask
;
288 char cra_name
[CRYPTO_MAX_ALG_NAME
];
289 char cra_driver_name
[CRYPTO_MAX_ALG_NAME
];
291 const struct crypto_type
*cra_type
;
294 struct ablkcipher_alg ablkcipher
;
295 struct aead_alg aead
;
296 struct blkcipher_alg blkcipher
;
297 struct cipher_alg cipher
;
298 struct compress_alg compress
;
302 int (*cra_init
)(struct crypto_tfm
*tfm
);
303 void (*cra_exit
)(struct crypto_tfm
*tfm
);
304 void (*cra_destroy
)(struct crypto_alg
*alg
);
306 struct module
*cra_module
;
310 * Algorithm registration interface.
312 int crypto_register_alg(struct crypto_alg
*alg
);
313 int crypto_unregister_alg(struct crypto_alg
*alg
);
316 * Algorithm query interface.
318 int crypto_has_alg(const char *name
, u32 type
, u32 mask
);
321 * Transforms: user-instantiated objects which encapsulate algorithms
322 * and core processing logic. Managed via crypto_alloc_*() and
323 * crypto_free_*(), as well as the various helpers below.
326 struct ablkcipher_tfm
{
327 int (*setkey
)(struct crypto_ablkcipher
*tfm
, const u8
*key
,
328 unsigned int keylen
);
329 int (*encrypt
)(struct ablkcipher_request
*req
);
330 int (*decrypt
)(struct ablkcipher_request
*req
);
331 int (*givencrypt
)(struct skcipher_givcrypt_request
*req
);
332 int (*givdecrypt
)(struct skcipher_givcrypt_request
*req
);
334 struct crypto_ablkcipher
*base
;
337 unsigned int reqsize
;
341 int (*setkey
)(struct crypto_aead
*tfm
, const u8
*key
,
342 unsigned int keylen
);
343 int (*encrypt
)(struct aead_request
*req
);
344 int (*decrypt
)(struct aead_request
*req
);
345 int (*givencrypt
)(struct aead_givcrypt_request
*req
);
346 int (*givdecrypt
)(struct aead_givcrypt_request
*req
);
348 struct crypto_aead
*base
;
351 unsigned int authsize
;
352 unsigned int reqsize
;
355 struct blkcipher_tfm
{
357 int (*setkey
)(struct crypto_tfm
*tfm
, const u8
*key
,
358 unsigned int keylen
);
359 int (*encrypt
)(struct blkcipher_desc
*desc
, struct scatterlist
*dst
,
360 struct scatterlist
*src
, unsigned int nbytes
);
361 int (*decrypt
)(struct blkcipher_desc
*desc
, struct scatterlist
*dst
,
362 struct scatterlist
*src
, unsigned int nbytes
);
366 int (*cit_setkey
)(struct crypto_tfm
*tfm
,
367 const u8
*key
, unsigned int keylen
);
368 void (*cit_encrypt_one
)(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
);
369 void (*cit_decrypt_one
)(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
);
373 int (*init
)(struct hash_desc
*desc
);
374 int (*update
)(struct hash_desc
*desc
,
375 struct scatterlist
*sg
, unsigned int nsg
);
376 int (*final
)(struct hash_desc
*desc
, u8
*out
);
377 int (*digest
)(struct hash_desc
*desc
, struct scatterlist
*sg
,
378 unsigned int nsg
, u8
*out
);
379 int (*setkey
)(struct crypto_hash
*tfm
, const u8
*key
,
380 unsigned int keylen
);
381 unsigned int digestsize
;
384 struct compress_tfm
{
385 int (*cot_compress
)(struct crypto_tfm
*tfm
,
386 const u8
*src
, unsigned int slen
,
387 u8
*dst
, unsigned int *dlen
);
388 int (*cot_decompress
)(struct crypto_tfm
*tfm
,
389 const u8
*src
, unsigned int slen
,
390 u8
*dst
, unsigned int *dlen
);
394 int (*rng_gen_random
)(struct crypto_rng
*tfm
, u8
*rdata
,
396 int (*rng_reset
)(struct crypto_rng
*tfm
, u8
*seed
, unsigned int slen
);
399 #define crt_ablkcipher crt_u.ablkcipher
400 #define crt_aead crt_u.aead
401 #define crt_blkcipher crt_u.blkcipher
402 #define crt_cipher crt_u.cipher
403 #define crt_hash crt_u.hash
404 #define crt_compress crt_u.compress
405 #define crt_rng crt_u.rng
412 struct ablkcipher_tfm ablkcipher
;
413 struct aead_tfm aead
;
414 struct blkcipher_tfm blkcipher
;
415 struct cipher_tfm cipher
;
416 struct hash_tfm hash
;
417 struct compress_tfm compress
;
421 void (*exit
)(struct crypto_tfm
*tfm
);
423 struct crypto_alg
*__crt_alg
;
425 void *__crt_ctx
[] CRYPTO_MINALIGN_ATTR
;
428 struct crypto_ablkcipher
{
429 struct crypto_tfm base
;
433 struct crypto_tfm base
;
436 struct crypto_blkcipher
{
437 struct crypto_tfm base
;
440 struct crypto_cipher
{
441 struct crypto_tfm base
;
445 struct crypto_tfm base
;
449 struct crypto_tfm base
;
453 struct crypto_tfm base
;
464 #define CRYPTOA_MAX (__CRYPTOA_MAX - 1)
466 /* Maximum number of (rtattr) parameters for each template. */
467 #define CRYPTO_MAX_ATTRS 32
469 struct crypto_attr_alg
{
470 char name
[CRYPTO_MAX_ALG_NAME
];
473 struct crypto_attr_type
{
478 struct crypto_attr_u32
{
483 * Transform user interface.
486 struct crypto_tfm
*crypto_alloc_base(const char *alg_name
, u32 type
, u32 mask
);
487 void crypto_destroy_tfm(void *mem
, struct crypto_tfm
*tfm
);
489 static inline void crypto_free_tfm(struct crypto_tfm
*tfm
)
491 return crypto_destroy_tfm(tfm
, tfm
);
494 int alg_test(const char *driver
, const char *alg
, u32 type
, u32 mask
);
497 * Transform helpers which query the underlying algorithm.
499 static inline const char *crypto_tfm_alg_name(struct crypto_tfm
*tfm
)
501 return tfm
->__crt_alg
->cra_name
;
504 static inline const char *crypto_tfm_alg_driver_name(struct crypto_tfm
*tfm
)
506 return tfm
->__crt_alg
->cra_driver_name
;
509 static inline int crypto_tfm_alg_priority(struct crypto_tfm
*tfm
)
511 return tfm
->__crt_alg
->cra_priority
;
514 static inline const char *crypto_tfm_alg_modname(struct crypto_tfm
*tfm
)
516 return module_name(tfm
->__crt_alg
->cra_module
);
519 static inline u32
crypto_tfm_alg_type(struct crypto_tfm
*tfm
)
521 return tfm
->__crt_alg
->cra_flags
& CRYPTO_ALG_TYPE_MASK
;
524 static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm
*tfm
)
526 return tfm
->__crt_alg
->cra_blocksize
;
529 static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm
*tfm
)
531 return tfm
->__crt_alg
->cra_alignmask
;
534 static inline u32
crypto_tfm_get_flags(struct crypto_tfm
*tfm
)
536 return tfm
->crt_flags
;
539 static inline void crypto_tfm_set_flags(struct crypto_tfm
*tfm
, u32 flags
)
541 tfm
->crt_flags
|= flags
;
544 static inline void crypto_tfm_clear_flags(struct crypto_tfm
*tfm
, u32 flags
)
546 tfm
->crt_flags
&= ~flags
;
549 static inline void *crypto_tfm_ctx(struct crypto_tfm
*tfm
)
551 return tfm
->__crt_ctx
;
554 static inline unsigned int crypto_tfm_ctx_alignment(void)
556 struct crypto_tfm
*tfm
;
557 return __alignof__(tfm
->__crt_ctx
);
563 static inline struct crypto_ablkcipher
*__crypto_ablkcipher_cast(
564 struct crypto_tfm
*tfm
)
566 return (struct crypto_ablkcipher
*)tfm
;
569 static inline u32
crypto_skcipher_type(u32 type
)
571 type
&= ~(CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_GENIV
);
572 type
|= CRYPTO_ALG_TYPE_BLKCIPHER
;
576 static inline u32
crypto_skcipher_mask(u32 mask
)
578 mask
&= ~(CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_GENIV
);
579 mask
|= CRYPTO_ALG_TYPE_BLKCIPHER_MASK
;
583 struct crypto_ablkcipher
*crypto_alloc_ablkcipher(const char *alg_name
,
586 static inline struct crypto_tfm
*crypto_ablkcipher_tfm(
587 struct crypto_ablkcipher
*tfm
)
592 static inline void crypto_free_ablkcipher(struct crypto_ablkcipher
*tfm
)
594 crypto_free_tfm(crypto_ablkcipher_tfm(tfm
));
597 static inline int crypto_has_ablkcipher(const char *alg_name
, u32 type
,
600 return crypto_has_alg(alg_name
, crypto_skcipher_type(type
),
601 crypto_skcipher_mask(mask
));
604 static inline struct ablkcipher_tfm
*crypto_ablkcipher_crt(
605 struct crypto_ablkcipher
*tfm
)
607 return &crypto_ablkcipher_tfm(tfm
)->crt_ablkcipher
;
610 static inline unsigned int crypto_ablkcipher_ivsize(
611 struct crypto_ablkcipher
*tfm
)
613 return crypto_ablkcipher_crt(tfm
)->ivsize
;
616 static inline unsigned int crypto_ablkcipher_blocksize(
617 struct crypto_ablkcipher
*tfm
)
619 return crypto_tfm_alg_blocksize(crypto_ablkcipher_tfm(tfm
));
622 static inline unsigned int crypto_ablkcipher_alignmask(
623 struct crypto_ablkcipher
*tfm
)
625 return crypto_tfm_alg_alignmask(crypto_ablkcipher_tfm(tfm
));
628 static inline u32
crypto_ablkcipher_get_flags(struct crypto_ablkcipher
*tfm
)
630 return crypto_tfm_get_flags(crypto_ablkcipher_tfm(tfm
));
633 static inline void crypto_ablkcipher_set_flags(struct crypto_ablkcipher
*tfm
,
636 crypto_tfm_set_flags(crypto_ablkcipher_tfm(tfm
), flags
);
639 static inline void crypto_ablkcipher_clear_flags(struct crypto_ablkcipher
*tfm
,
642 crypto_tfm_clear_flags(crypto_ablkcipher_tfm(tfm
), flags
);
645 static inline int crypto_ablkcipher_setkey(struct crypto_ablkcipher
*tfm
,
646 const u8
*key
, unsigned int keylen
)
648 struct ablkcipher_tfm
*crt
= crypto_ablkcipher_crt(tfm
);
650 return crt
->setkey(crt
->base
, key
, keylen
);
653 static inline struct crypto_ablkcipher
*crypto_ablkcipher_reqtfm(
654 struct ablkcipher_request
*req
)
656 return __crypto_ablkcipher_cast(req
->base
.tfm
);
659 static inline int crypto_ablkcipher_encrypt(struct ablkcipher_request
*req
)
661 struct ablkcipher_tfm
*crt
=
662 crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req
));
663 return crt
->encrypt(req
);
666 static inline int crypto_ablkcipher_decrypt(struct ablkcipher_request
*req
)
668 struct ablkcipher_tfm
*crt
=
669 crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req
));
670 return crt
->decrypt(req
);
673 static inline unsigned int crypto_ablkcipher_reqsize(
674 struct crypto_ablkcipher
*tfm
)
676 return crypto_ablkcipher_crt(tfm
)->reqsize
;
679 static inline void ablkcipher_request_set_tfm(
680 struct ablkcipher_request
*req
, struct crypto_ablkcipher
*tfm
)
682 req
->base
.tfm
= crypto_ablkcipher_tfm(crypto_ablkcipher_crt(tfm
)->base
);
685 static inline struct ablkcipher_request
*ablkcipher_request_cast(
686 struct crypto_async_request
*req
)
688 return container_of(req
, struct ablkcipher_request
, base
);
691 static inline struct ablkcipher_request
*ablkcipher_request_alloc(
692 struct crypto_ablkcipher
*tfm
, gfp_t gfp
)
694 struct ablkcipher_request
*req
;
696 req
= kmalloc(sizeof(struct ablkcipher_request
) +
697 crypto_ablkcipher_reqsize(tfm
), gfp
);
700 ablkcipher_request_set_tfm(req
, tfm
);
705 static inline void ablkcipher_request_free(struct ablkcipher_request
*req
)
710 static inline void ablkcipher_request_set_callback(
711 struct ablkcipher_request
*req
,
712 u32 flags
, crypto_completion_t complete
, void *data
)
714 req
->base
.complete
= complete
;
715 req
->base
.data
= data
;
716 req
->base
.flags
= flags
;
719 static inline void ablkcipher_request_set_crypt(
720 struct ablkcipher_request
*req
,
721 struct scatterlist
*src
, struct scatterlist
*dst
,
722 unsigned int nbytes
, void *iv
)
726 req
->nbytes
= nbytes
;
730 static inline struct crypto_aead
*__crypto_aead_cast(struct crypto_tfm
*tfm
)
732 return (struct crypto_aead
*)tfm
;
735 struct crypto_aead
*crypto_alloc_aead(const char *alg_name
, u32 type
, u32 mask
);
737 static inline struct crypto_tfm
*crypto_aead_tfm(struct crypto_aead
*tfm
)
742 static inline void crypto_free_aead(struct crypto_aead
*tfm
)
744 crypto_free_tfm(crypto_aead_tfm(tfm
));
747 static inline struct aead_tfm
*crypto_aead_crt(struct crypto_aead
*tfm
)
749 return &crypto_aead_tfm(tfm
)->crt_aead
;
752 static inline unsigned int crypto_aead_ivsize(struct crypto_aead
*tfm
)
754 return crypto_aead_crt(tfm
)->ivsize
;
757 static inline unsigned int crypto_aead_authsize(struct crypto_aead
*tfm
)
759 return crypto_aead_crt(tfm
)->authsize
;
762 static inline unsigned int crypto_aead_blocksize(struct crypto_aead
*tfm
)
764 return crypto_tfm_alg_blocksize(crypto_aead_tfm(tfm
));
767 static inline unsigned int crypto_aead_alignmask(struct crypto_aead
*tfm
)
769 return crypto_tfm_alg_alignmask(crypto_aead_tfm(tfm
));
772 static inline u32
crypto_aead_get_flags(struct crypto_aead
*tfm
)
774 return crypto_tfm_get_flags(crypto_aead_tfm(tfm
));
777 static inline void crypto_aead_set_flags(struct crypto_aead
*tfm
, u32 flags
)
779 crypto_tfm_set_flags(crypto_aead_tfm(tfm
), flags
);
782 static inline void crypto_aead_clear_flags(struct crypto_aead
*tfm
, u32 flags
)
784 crypto_tfm_clear_flags(crypto_aead_tfm(tfm
), flags
);
787 static inline int crypto_aead_setkey(struct crypto_aead
*tfm
, const u8
*key
,
790 struct aead_tfm
*crt
= crypto_aead_crt(tfm
);
792 return crt
->setkey(crt
->base
, key
, keylen
);
795 int crypto_aead_setauthsize(struct crypto_aead
*tfm
, unsigned int authsize
);
797 static inline struct crypto_aead
*crypto_aead_reqtfm(struct aead_request
*req
)
799 return __crypto_aead_cast(req
->base
.tfm
);
802 static inline int crypto_aead_encrypt(struct aead_request
*req
)
804 return crypto_aead_crt(crypto_aead_reqtfm(req
))->encrypt(req
);
807 static inline int crypto_aead_decrypt(struct aead_request
*req
)
809 return crypto_aead_crt(crypto_aead_reqtfm(req
))->decrypt(req
);
812 static inline unsigned int crypto_aead_reqsize(struct crypto_aead
*tfm
)
814 return crypto_aead_crt(tfm
)->reqsize
;
817 static inline void aead_request_set_tfm(struct aead_request
*req
,
818 struct crypto_aead
*tfm
)
820 req
->base
.tfm
= crypto_aead_tfm(crypto_aead_crt(tfm
)->base
);
823 static inline struct aead_request
*aead_request_alloc(struct crypto_aead
*tfm
,
826 struct aead_request
*req
;
828 req
= kmalloc(sizeof(*req
) + crypto_aead_reqsize(tfm
), gfp
);
831 aead_request_set_tfm(req
, tfm
);
836 static inline void aead_request_free(struct aead_request
*req
)
841 static inline void aead_request_set_callback(struct aead_request
*req
,
843 crypto_completion_t complete
,
846 req
->base
.complete
= complete
;
847 req
->base
.data
= data
;
848 req
->base
.flags
= flags
;
851 static inline void aead_request_set_crypt(struct aead_request
*req
,
852 struct scatterlist
*src
,
853 struct scatterlist
*dst
,
854 unsigned int cryptlen
, u8
*iv
)
858 req
->cryptlen
= cryptlen
;
862 static inline void aead_request_set_assoc(struct aead_request
*req
,
863 struct scatterlist
*assoc
,
864 unsigned int assoclen
)
867 req
->assoclen
= assoclen
;
870 static inline struct crypto_blkcipher
*__crypto_blkcipher_cast(
871 struct crypto_tfm
*tfm
)
873 return (struct crypto_blkcipher
*)tfm
;
876 static inline struct crypto_blkcipher
*crypto_blkcipher_cast(
877 struct crypto_tfm
*tfm
)
879 BUG_ON(crypto_tfm_alg_type(tfm
) != CRYPTO_ALG_TYPE_BLKCIPHER
);
880 return __crypto_blkcipher_cast(tfm
);
883 static inline struct crypto_blkcipher
*crypto_alloc_blkcipher(
884 const char *alg_name
, u32 type
, u32 mask
)
886 type
&= ~CRYPTO_ALG_TYPE_MASK
;
887 type
|= CRYPTO_ALG_TYPE_BLKCIPHER
;
888 mask
|= CRYPTO_ALG_TYPE_MASK
;
890 return __crypto_blkcipher_cast(crypto_alloc_base(alg_name
, type
, mask
));
893 static inline struct crypto_tfm
*crypto_blkcipher_tfm(
894 struct crypto_blkcipher
*tfm
)
899 static inline void crypto_free_blkcipher(struct crypto_blkcipher
*tfm
)
901 crypto_free_tfm(crypto_blkcipher_tfm(tfm
));
904 static inline int crypto_has_blkcipher(const char *alg_name
, u32 type
, u32 mask
)
906 type
&= ~CRYPTO_ALG_TYPE_MASK
;
907 type
|= CRYPTO_ALG_TYPE_BLKCIPHER
;
908 mask
|= CRYPTO_ALG_TYPE_MASK
;
910 return crypto_has_alg(alg_name
, type
, mask
);
913 static inline const char *crypto_blkcipher_name(struct crypto_blkcipher
*tfm
)
915 return crypto_tfm_alg_name(crypto_blkcipher_tfm(tfm
));
918 static inline struct blkcipher_tfm
*crypto_blkcipher_crt(
919 struct crypto_blkcipher
*tfm
)
921 return &crypto_blkcipher_tfm(tfm
)->crt_blkcipher
;
924 static inline struct blkcipher_alg
*crypto_blkcipher_alg(
925 struct crypto_blkcipher
*tfm
)
927 return &crypto_blkcipher_tfm(tfm
)->__crt_alg
->cra_blkcipher
;
930 static inline unsigned int crypto_blkcipher_ivsize(struct crypto_blkcipher
*tfm
)
932 return crypto_blkcipher_alg(tfm
)->ivsize
;
935 static inline unsigned int crypto_blkcipher_blocksize(
936 struct crypto_blkcipher
*tfm
)
938 return crypto_tfm_alg_blocksize(crypto_blkcipher_tfm(tfm
));
941 static inline unsigned int crypto_blkcipher_alignmask(
942 struct crypto_blkcipher
*tfm
)
944 return crypto_tfm_alg_alignmask(crypto_blkcipher_tfm(tfm
));
947 static inline u32
crypto_blkcipher_get_flags(struct crypto_blkcipher
*tfm
)
949 return crypto_tfm_get_flags(crypto_blkcipher_tfm(tfm
));
952 static inline void crypto_blkcipher_set_flags(struct crypto_blkcipher
*tfm
,
955 crypto_tfm_set_flags(crypto_blkcipher_tfm(tfm
), flags
);
958 static inline void crypto_blkcipher_clear_flags(struct crypto_blkcipher
*tfm
,
961 crypto_tfm_clear_flags(crypto_blkcipher_tfm(tfm
), flags
);
964 static inline int crypto_blkcipher_setkey(struct crypto_blkcipher
*tfm
,
965 const u8
*key
, unsigned int keylen
)
967 return crypto_blkcipher_crt(tfm
)->setkey(crypto_blkcipher_tfm(tfm
),
971 static inline int crypto_blkcipher_encrypt(struct blkcipher_desc
*desc
,
972 struct scatterlist
*dst
,
973 struct scatterlist
*src
,
976 desc
->info
= crypto_blkcipher_crt(desc
->tfm
)->iv
;
977 return crypto_blkcipher_crt(desc
->tfm
)->encrypt(desc
, dst
, src
, nbytes
);
980 static inline int crypto_blkcipher_encrypt_iv(struct blkcipher_desc
*desc
,
981 struct scatterlist
*dst
,
982 struct scatterlist
*src
,
985 return crypto_blkcipher_crt(desc
->tfm
)->encrypt(desc
, dst
, src
, nbytes
);
988 static inline int crypto_blkcipher_decrypt(struct blkcipher_desc
*desc
,
989 struct scatterlist
*dst
,
990 struct scatterlist
*src
,
993 desc
->info
= crypto_blkcipher_crt(desc
->tfm
)->iv
;
994 return crypto_blkcipher_crt(desc
->tfm
)->decrypt(desc
, dst
, src
, nbytes
);
997 static inline int crypto_blkcipher_decrypt_iv(struct blkcipher_desc
*desc
,
998 struct scatterlist
*dst
,
999 struct scatterlist
*src
,
1000 unsigned int nbytes
)
1002 return crypto_blkcipher_crt(desc
->tfm
)->decrypt(desc
, dst
, src
, nbytes
);
1005 static inline void crypto_blkcipher_set_iv(struct crypto_blkcipher
*tfm
,
1006 const u8
*src
, unsigned int len
)
1008 memcpy(crypto_blkcipher_crt(tfm
)->iv
, src
, len
);
1011 static inline void crypto_blkcipher_get_iv(struct crypto_blkcipher
*tfm
,
1012 u8
*dst
, unsigned int len
)
1014 memcpy(dst
, crypto_blkcipher_crt(tfm
)->iv
, len
);
1017 static inline struct crypto_cipher
*__crypto_cipher_cast(struct crypto_tfm
*tfm
)
1019 return (struct crypto_cipher
*)tfm
;
1022 static inline struct crypto_cipher
*crypto_cipher_cast(struct crypto_tfm
*tfm
)
1024 BUG_ON(crypto_tfm_alg_type(tfm
) != CRYPTO_ALG_TYPE_CIPHER
);
1025 return __crypto_cipher_cast(tfm
);
1028 static inline struct crypto_cipher
*crypto_alloc_cipher(const char *alg_name
,
1031 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1032 type
|= CRYPTO_ALG_TYPE_CIPHER
;
1033 mask
|= CRYPTO_ALG_TYPE_MASK
;
1035 return __crypto_cipher_cast(crypto_alloc_base(alg_name
, type
, mask
));
1038 static inline struct crypto_tfm
*crypto_cipher_tfm(struct crypto_cipher
*tfm
)
1043 static inline void crypto_free_cipher(struct crypto_cipher
*tfm
)
1045 crypto_free_tfm(crypto_cipher_tfm(tfm
));
1048 static inline int crypto_has_cipher(const char *alg_name
, u32 type
, u32 mask
)
1050 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1051 type
|= CRYPTO_ALG_TYPE_CIPHER
;
1052 mask
|= CRYPTO_ALG_TYPE_MASK
;
1054 return crypto_has_alg(alg_name
, type
, mask
);
1057 static inline struct cipher_tfm
*crypto_cipher_crt(struct crypto_cipher
*tfm
)
1059 return &crypto_cipher_tfm(tfm
)->crt_cipher
;
1062 static inline unsigned int crypto_cipher_blocksize(struct crypto_cipher
*tfm
)
1064 return crypto_tfm_alg_blocksize(crypto_cipher_tfm(tfm
));
1067 static inline unsigned int crypto_cipher_alignmask(struct crypto_cipher
*tfm
)
1069 return crypto_tfm_alg_alignmask(crypto_cipher_tfm(tfm
));
1072 static inline u32
crypto_cipher_get_flags(struct crypto_cipher
*tfm
)
1074 return crypto_tfm_get_flags(crypto_cipher_tfm(tfm
));
1077 static inline void crypto_cipher_set_flags(struct crypto_cipher
*tfm
,
1080 crypto_tfm_set_flags(crypto_cipher_tfm(tfm
), flags
);
1083 static inline void crypto_cipher_clear_flags(struct crypto_cipher
*tfm
,
1086 crypto_tfm_clear_flags(crypto_cipher_tfm(tfm
), flags
);
1089 static inline int crypto_cipher_setkey(struct crypto_cipher
*tfm
,
1090 const u8
*key
, unsigned int keylen
)
1092 return crypto_cipher_crt(tfm
)->cit_setkey(crypto_cipher_tfm(tfm
),
1096 static inline void crypto_cipher_encrypt_one(struct crypto_cipher
*tfm
,
1097 u8
*dst
, const u8
*src
)
1099 crypto_cipher_crt(tfm
)->cit_encrypt_one(crypto_cipher_tfm(tfm
),
1103 static inline void crypto_cipher_decrypt_one(struct crypto_cipher
*tfm
,
1104 u8
*dst
, const u8
*src
)
1106 crypto_cipher_crt(tfm
)->cit_decrypt_one(crypto_cipher_tfm(tfm
),
1110 static inline struct crypto_hash
*__crypto_hash_cast(struct crypto_tfm
*tfm
)
1112 return (struct crypto_hash
*)tfm
;
1115 static inline struct crypto_hash
*crypto_hash_cast(struct crypto_tfm
*tfm
)
1117 BUG_ON((crypto_tfm_alg_type(tfm
) ^ CRYPTO_ALG_TYPE_HASH
) &
1118 CRYPTO_ALG_TYPE_HASH_MASK
);
1119 return __crypto_hash_cast(tfm
);
1122 static inline struct crypto_hash
*crypto_alloc_hash(const char *alg_name
,
1125 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1126 mask
&= ~CRYPTO_ALG_TYPE_MASK
;
1127 type
|= CRYPTO_ALG_TYPE_HASH
;
1128 mask
|= CRYPTO_ALG_TYPE_HASH_MASK
;
1130 return __crypto_hash_cast(crypto_alloc_base(alg_name
, type
, mask
));
1133 static inline struct crypto_tfm
*crypto_hash_tfm(struct crypto_hash
*tfm
)
1138 static inline void crypto_free_hash(struct crypto_hash
*tfm
)
1140 crypto_free_tfm(crypto_hash_tfm(tfm
));
1143 static inline int crypto_has_hash(const char *alg_name
, u32 type
, u32 mask
)
1145 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1146 mask
&= ~CRYPTO_ALG_TYPE_MASK
;
1147 type
|= CRYPTO_ALG_TYPE_HASH
;
1148 mask
|= CRYPTO_ALG_TYPE_HASH_MASK
;
1150 return crypto_has_alg(alg_name
, type
, mask
);
1153 static inline struct hash_tfm
*crypto_hash_crt(struct crypto_hash
*tfm
)
1155 return &crypto_hash_tfm(tfm
)->crt_hash
;
1158 static inline unsigned int crypto_hash_blocksize(struct crypto_hash
*tfm
)
1160 return crypto_tfm_alg_blocksize(crypto_hash_tfm(tfm
));
1163 static inline unsigned int crypto_hash_alignmask(struct crypto_hash
*tfm
)
1165 return crypto_tfm_alg_alignmask(crypto_hash_tfm(tfm
));
1168 static inline unsigned int crypto_hash_digestsize(struct crypto_hash
*tfm
)
1170 return crypto_hash_crt(tfm
)->digestsize
;
1173 static inline u32
crypto_hash_get_flags(struct crypto_hash
*tfm
)
1175 return crypto_tfm_get_flags(crypto_hash_tfm(tfm
));
1178 static inline void crypto_hash_set_flags(struct crypto_hash
*tfm
, u32 flags
)
1180 crypto_tfm_set_flags(crypto_hash_tfm(tfm
), flags
);
1183 static inline void crypto_hash_clear_flags(struct crypto_hash
*tfm
, u32 flags
)
1185 crypto_tfm_clear_flags(crypto_hash_tfm(tfm
), flags
);
1188 static inline int crypto_hash_init(struct hash_desc
*desc
)
1190 return crypto_hash_crt(desc
->tfm
)->init(desc
);
1193 static inline int crypto_hash_update(struct hash_desc
*desc
,
1194 struct scatterlist
*sg
,
1195 unsigned int nbytes
)
1197 return crypto_hash_crt(desc
->tfm
)->update(desc
, sg
, nbytes
);
1200 static inline int crypto_hash_final(struct hash_desc
*desc
, u8
*out
)
1202 return crypto_hash_crt(desc
->tfm
)->final(desc
, out
);
1205 static inline int crypto_hash_digest(struct hash_desc
*desc
,
1206 struct scatterlist
*sg
,
1207 unsigned int nbytes
, u8
*out
)
1209 return crypto_hash_crt(desc
->tfm
)->digest(desc
, sg
, nbytes
, out
);
1212 static inline int crypto_hash_setkey(struct crypto_hash
*hash
,
1213 const u8
*key
, unsigned int keylen
)
1215 return crypto_hash_crt(hash
)->setkey(hash
, key
, keylen
);
1218 static inline struct crypto_comp
*__crypto_comp_cast(struct crypto_tfm
*tfm
)
1220 return (struct crypto_comp
*)tfm
;
1223 static inline struct crypto_comp
*crypto_comp_cast(struct crypto_tfm
*tfm
)
1225 BUG_ON((crypto_tfm_alg_type(tfm
) ^ CRYPTO_ALG_TYPE_COMPRESS
) &
1226 CRYPTO_ALG_TYPE_MASK
);
1227 return __crypto_comp_cast(tfm
);
1230 static inline struct crypto_comp
*crypto_alloc_comp(const char *alg_name
,
1233 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1234 type
|= CRYPTO_ALG_TYPE_COMPRESS
;
1235 mask
|= CRYPTO_ALG_TYPE_MASK
;
1237 return __crypto_comp_cast(crypto_alloc_base(alg_name
, type
, mask
));
1240 static inline struct crypto_tfm
*crypto_comp_tfm(struct crypto_comp
*tfm
)
1245 static inline void crypto_free_comp(struct crypto_comp
*tfm
)
1247 crypto_free_tfm(crypto_comp_tfm(tfm
));
1250 static inline int crypto_has_comp(const char *alg_name
, u32 type
, u32 mask
)
1252 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1253 type
|= CRYPTO_ALG_TYPE_COMPRESS
;
1254 mask
|= CRYPTO_ALG_TYPE_MASK
;
1256 return crypto_has_alg(alg_name
, type
, mask
);
1259 static inline const char *crypto_comp_name(struct crypto_comp
*tfm
)
1261 return crypto_tfm_alg_name(crypto_comp_tfm(tfm
));
1264 static inline struct compress_tfm
*crypto_comp_crt(struct crypto_comp
*tfm
)
1266 return &crypto_comp_tfm(tfm
)->crt_compress
;
1269 static inline int crypto_comp_compress(struct crypto_comp
*tfm
,
1270 const u8
*src
, unsigned int slen
,
1271 u8
*dst
, unsigned int *dlen
)
1273 return crypto_comp_crt(tfm
)->cot_compress(crypto_comp_tfm(tfm
),
1274 src
, slen
, dst
, dlen
);
1277 static inline int crypto_comp_decompress(struct crypto_comp
*tfm
,
1278 const u8
*src
, unsigned int slen
,
1279 u8
*dst
, unsigned int *dlen
)
1281 return crypto_comp_crt(tfm
)->cot_decompress(crypto_comp_tfm(tfm
),
1282 src
, slen
, dst
, dlen
);
1285 #endif /* _LINUX_CRYPTO_H */