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_DIGEST 0x00000002
34 #define CRYPTO_ALG_TYPE_HASH 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_COMPRESS 0x00000008
39 #define CRYPTO_ALG_TYPE_AEAD 0x00000009
41 #define CRYPTO_ALG_TYPE_HASH_MASK 0x0000000e
42 #define CRYPTO_ALG_TYPE_BLKCIPHER_MASK 0x0000000c
44 #define CRYPTO_ALG_LARVAL 0x00000010
45 #define CRYPTO_ALG_DEAD 0x00000020
46 #define CRYPTO_ALG_DYING 0x00000040
47 #define CRYPTO_ALG_ASYNC 0x00000080
50 * Set this bit if and only if the algorithm requires another algorithm of
51 * the same type to handle corner cases.
53 #define CRYPTO_ALG_NEED_FALLBACK 0x00000100
56 * This bit is set for symmetric key ciphers that have already been wrapped
57 * with a generic IV generator to prevent them from being wrapped again.
59 #define CRYPTO_ALG_GENIV 0x00000200
62 * Transform masks and values (for crt_flags).
64 #define CRYPTO_TFM_REQ_MASK 0x000fff00
65 #define CRYPTO_TFM_RES_MASK 0xfff00000
67 #define CRYPTO_TFM_REQ_WEAK_KEY 0x00000100
68 #define CRYPTO_TFM_REQ_MAY_SLEEP 0x00000200
69 #define CRYPTO_TFM_REQ_MAY_BACKLOG 0x00000400
70 #define CRYPTO_TFM_RES_WEAK_KEY 0x00100000
71 #define CRYPTO_TFM_RES_BAD_KEY_LEN 0x00200000
72 #define CRYPTO_TFM_RES_BAD_KEY_SCHED 0x00400000
73 #define CRYPTO_TFM_RES_BAD_BLOCK_LEN 0x00800000
74 #define CRYPTO_TFM_RES_BAD_FLAGS 0x01000000
77 * Miscellaneous stuff.
79 #define CRYPTO_MAX_ALG_NAME 64
82 * The macro CRYPTO_MINALIGN_ATTR (along with the void * type in the actual
83 * declaration) is used to ensure that the crypto_tfm context structure is
84 * aligned correctly for the given architecture so that there are no alignment
85 * faults for C data types. In particular, this is required on platforms such
86 * as arm where pointers are 32-bit aligned but there are data types such as
87 * u64 which require 64-bit alignment.
89 #if defined(ARCH_KMALLOC_MINALIGN)
90 #define CRYPTO_MINALIGN ARCH_KMALLOC_MINALIGN
91 #elif defined(ARCH_SLAB_MINALIGN)
92 #define CRYPTO_MINALIGN ARCH_SLAB_MINALIGN
94 #define CRYPTO_MINALIGN __alignof__(unsigned long long)
97 #define CRYPTO_MINALIGN_ATTR __attribute__ ((__aligned__(CRYPTO_MINALIGN)))
100 struct crypto_ablkcipher
;
101 struct crypto_async_request
;
103 struct crypto_blkcipher
;
107 struct aead_givcrypt_request
;
108 struct skcipher_givcrypt_request
;
110 typedef void (*crypto_completion_t
)(struct crypto_async_request
*req
, int err
);
112 struct crypto_async_request
{
113 struct list_head list
;
114 crypto_completion_t complete
;
116 struct crypto_tfm
*tfm
;
121 struct ablkcipher_request
{
122 struct crypto_async_request base
;
128 struct scatterlist
*src
;
129 struct scatterlist
*dst
;
131 void *__ctx
[] CRYPTO_MINALIGN_ATTR
;
135 * struct aead_request - AEAD request
136 * @base: Common attributes for async crypto requests
137 * @assoclen: Length in bytes of associated data for authentication
138 * @cryptlen: Length of data to be encrypted or decrypted
139 * @iv: Initialisation vector
140 * @assoc: Associated data
142 * @dst: Destination data
143 * @__ctx: Start of private context data
145 struct aead_request
{
146 struct crypto_async_request base
;
148 unsigned int assoclen
;
149 unsigned int cryptlen
;
153 struct scatterlist
*assoc
;
154 struct scatterlist
*src
;
155 struct scatterlist
*dst
;
157 void *__ctx
[] CRYPTO_MINALIGN_ATTR
;
160 struct blkcipher_desc
{
161 struct crypto_blkcipher
*tfm
;
167 struct crypto_tfm
*tfm
;
168 void (*crfn
)(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
);
169 unsigned int (*prfn
)(const struct cipher_desc
*desc
, u8
*dst
,
170 const u8
*src
, unsigned int nbytes
);
175 struct crypto_hash
*tfm
;
180 * Algorithms: modular crypto algorithm implementations, managed
181 * via crypto_register_alg() and crypto_unregister_alg().
183 struct ablkcipher_alg
{
184 int (*setkey
)(struct crypto_ablkcipher
*tfm
, const u8
*key
,
185 unsigned int keylen
);
186 int (*encrypt
)(struct ablkcipher_request
*req
);
187 int (*decrypt
)(struct ablkcipher_request
*req
);
188 int (*givencrypt
)(struct skcipher_givcrypt_request
*req
);
189 int (*givdecrypt
)(struct skcipher_givcrypt_request
*req
);
193 unsigned int min_keysize
;
194 unsigned int max_keysize
;
199 int (*setkey
)(struct crypto_aead
*tfm
, const u8
*key
,
200 unsigned int keylen
);
201 int (*setauthsize
)(struct crypto_aead
*tfm
, unsigned int authsize
);
202 int (*encrypt
)(struct aead_request
*req
);
203 int (*decrypt
)(struct aead_request
*req
);
204 int (*givencrypt
)(struct aead_givcrypt_request
*req
);
205 int (*givdecrypt
)(struct aead_givcrypt_request
*req
);
210 unsigned int maxauthsize
;
213 struct blkcipher_alg
{
214 int (*setkey
)(struct crypto_tfm
*tfm
, const u8
*key
,
215 unsigned int keylen
);
216 int (*encrypt
)(struct blkcipher_desc
*desc
,
217 struct scatterlist
*dst
, struct scatterlist
*src
,
218 unsigned int nbytes
);
219 int (*decrypt
)(struct blkcipher_desc
*desc
,
220 struct scatterlist
*dst
, struct scatterlist
*src
,
221 unsigned int nbytes
);
225 unsigned int min_keysize
;
226 unsigned int max_keysize
;
231 unsigned int cia_min_keysize
;
232 unsigned int cia_max_keysize
;
233 int (*cia_setkey
)(struct crypto_tfm
*tfm
, const u8
*key
,
234 unsigned int keylen
);
235 void (*cia_encrypt
)(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
);
236 void (*cia_decrypt
)(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
);
240 unsigned int dia_digestsize
;
241 void (*dia_init
)(struct crypto_tfm
*tfm
);
242 void (*dia_update
)(struct crypto_tfm
*tfm
, const u8
*data
,
244 void (*dia_final
)(struct crypto_tfm
*tfm
, u8
*out
);
245 int (*dia_setkey
)(struct crypto_tfm
*tfm
, const u8
*key
,
246 unsigned int keylen
);
250 int (*init
)(struct hash_desc
*desc
);
251 int (*update
)(struct hash_desc
*desc
, struct scatterlist
*sg
,
252 unsigned int nbytes
);
253 int (*final
)(struct hash_desc
*desc
, u8
*out
);
254 int (*digest
)(struct hash_desc
*desc
, struct scatterlist
*sg
,
255 unsigned int nbytes
, u8
*out
);
256 int (*setkey
)(struct crypto_hash
*tfm
, const u8
*key
,
257 unsigned int keylen
);
259 unsigned int digestsize
;
262 struct compress_alg
{
263 int (*coa_compress
)(struct crypto_tfm
*tfm
, const u8
*src
,
264 unsigned int slen
, u8
*dst
, unsigned int *dlen
);
265 int (*coa_decompress
)(struct crypto_tfm
*tfm
, const u8
*src
,
266 unsigned int slen
, u8
*dst
, unsigned int *dlen
);
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_digest cra_u.digest
274 #define cra_hash cra_u.hash
275 #define cra_compress cra_u.compress
278 struct list_head cra_list
;
279 struct list_head cra_users
;
282 unsigned int cra_blocksize
;
283 unsigned int cra_ctxsize
;
284 unsigned int cra_alignmask
;
289 char cra_name
[CRYPTO_MAX_ALG_NAME
];
290 char cra_driver_name
[CRYPTO_MAX_ALG_NAME
];
292 const struct crypto_type
*cra_type
;
295 struct ablkcipher_alg ablkcipher
;
296 struct aead_alg aead
;
297 struct blkcipher_alg blkcipher
;
298 struct cipher_alg cipher
;
299 struct digest_alg digest
;
300 struct hash_alg hash
;
301 struct compress_alg compress
;
304 int (*cra_init
)(struct crypto_tfm
*tfm
);
305 void (*cra_exit
)(struct crypto_tfm
*tfm
);
306 void (*cra_destroy
)(struct crypto_alg
*alg
);
308 struct module
*cra_module
;
312 * Algorithm registration interface.
314 int crypto_register_alg(struct crypto_alg
*alg
);
315 int crypto_unregister_alg(struct crypto_alg
*alg
);
318 * Algorithm query interface.
321 int crypto_has_alg(const char *name
, u32 type
, u32 mask
);
323 static inline int crypto_has_alg(const char *name
, u32 type
, u32 mask
)
330 * Transforms: user-instantiated objects which encapsulate algorithms
331 * and core processing logic. Managed via crypto_alloc_*() and
332 * crypto_free_*(), as well as the various helpers below.
335 struct ablkcipher_tfm
{
336 int (*setkey
)(struct crypto_ablkcipher
*tfm
, const u8
*key
,
337 unsigned int keylen
);
338 int (*encrypt
)(struct ablkcipher_request
*req
);
339 int (*decrypt
)(struct ablkcipher_request
*req
);
340 int (*givencrypt
)(struct skcipher_givcrypt_request
*req
);
341 int (*givdecrypt
)(struct skcipher_givcrypt_request
*req
);
343 struct crypto_ablkcipher
*base
;
346 unsigned int reqsize
;
350 int (*setkey
)(struct crypto_aead
*tfm
, const u8
*key
,
351 unsigned int keylen
);
352 int (*encrypt
)(struct aead_request
*req
);
353 int (*decrypt
)(struct aead_request
*req
);
354 int (*givencrypt
)(struct aead_givcrypt_request
*req
);
355 int (*givdecrypt
)(struct aead_givcrypt_request
*req
);
357 struct crypto_aead
*base
;
360 unsigned int authsize
;
361 unsigned int reqsize
;
364 struct blkcipher_tfm
{
366 int (*setkey
)(struct crypto_tfm
*tfm
, const u8
*key
,
367 unsigned int keylen
);
368 int (*encrypt
)(struct blkcipher_desc
*desc
, struct scatterlist
*dst
,
369 struct scatterlist
*src
, unsigned int nbytes
);
370 int (*decrypt
)(struct blkcipher_desc
*desc
, struct scatterlist
*dst
,
371 struct scatterlist
*src
, unsigned int nbytes
);
375 int (*cit_setkey
)(struct crypto_tfm
*tfm
,
376 const u8
*key
, unsigned int keylen
);
377 void (*cit_encrypt_one
)(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
);
378 void (*cit_decrypt_one
)(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
);
382 int (*init
)(struct hash_desc
*desc
);
383 int (*update
)(struct hash_desc
*desc
,
384 struct scatterlist
*sg
, unsigned int nsg
);
385 int (*final
)(struct hash_desc
*desc
, u8
*out
);
386 int (*digest
)(struct hash_desc
*desc
, struct scatterlist
*sg
,
387 unsigned int nsg
, u8
*out
);
388 int (*setkey
)(struct crypto_hash
*tfm
, const u8
*key
,
389 unsigned int keylen
);
390 unsigned int digestsize
;
393 struct compress_tfm
{
394 int (*cot_compress
)(struct crypto_tfm
*tfm
,
395 const u8
*src
, unsigned int slen
,
396 u8
*dst
, unsigned int *dlen
);
397 int (*cot_decompress
)(struct crypto_tfm
*tfm
,
398 const u8
*src
, unsigned int slen
,
399 u8
*dst
, unsigned int *dlen
);
402 #define crt_ablkcipher crt_u.ablkcipher
403 #define crt_aead crt_u.aead
404 #define crt_blkcipher crt_u.blkcipher
405 #define crt_cipher crt_u.cipher
406 #define crt_hash crt_u.hash
407 #define crt_compress crt_u.compress
414 struct ablkcipher_tfm ablkcipher
;
415 struct aead_tfm aead
;
416 struct blkcipher_tfm blkcipher
;
417 struct cipher_tfm cipher
;
418 struct hash_tfm hash
;
419 struct compress_tfm compress
;
422 struct crypto_alg
*__crt_alg
;
424 void *__crt_ctx
[] CRYPTO_MINALIGN_ATTR
;
427 struct crypto_ablkcipher
{
428 struct crypto_tfm base
;
432 struct crypto_tfm base
;
435 struct crypto_blkcipher
{
436 struct crypto_tfm base
;
439 struct crypto_cipher
{
440 struct crypto_tfm base
;
444 struct crypto_tfm base
;
448 struct crypto_tfm base
;
459 #define CRYPTOA_MAX (__CRYPTOA_MAX - 1)
461 /* Maximum number of (rtattr) parameters for each template. */
462 #define CRYPTO_MAX_ATTRS 32
464 struct crypto_attr_alg
{
465 char name
[CRYPTO_MAX_ALG_NAME
];
468 struct crypto_attr_type
{
473 struct crypto_attr_u32
{
478 * Transform user interface.
481 struct crypto_tfm
*crypto_alloc_tfm(const char *alg_name
, u32 tfm_flags
);
482 struct crypto_tfm
*crypto_alloc_base(const char *alg_name
, u32 type
, u32 mask
);
483 void crypto_free_tfm(struct crypto_tfm
*tfm
);
486 * Transform helpers which query the underlying algorithm.
488 static inline const char *crypto_tfm_alg_name(struct crypto_tfm
*tfm
)
490 return tfm
->__crt_alg
->cra_name
;
493 static inline const char *crypto_tfm_alg_driver_name(struct crypto_tfm
*tfm
)
495 return tfm
->__crt_alg
->cra_driver_name
;
498 static inline int crypto_tfm_alg_priority(struct crypto_tfm
*tfm
)
500 return tfm
->__crt_alg
->cra_priority
;
503 static inline const char *crypto_tfm_alg_modname(struct crypto_tfm
*tfm
)
505 return module_name(tfm
->__crt_alg
->cra_module
);
508 static inline u32
crypto_tfm_alg_type(struct crypto_tfm
*tfm
)
510 return tfm
->__crt_alg
->cra_flags
& CRYPTO_ALG_TYPE_MASK
;
513 static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm
*tfm
)
515 return tfm
->__crt_alg
->cra_blocksize
;
518 static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm
*tfm
)
520 return tfm
->__crt_alg
->cra_alignmask
;
523 static inline u32
crypto_tfm_get_flags(struct crypto_tfm
*tfm
)
525 return tfm
->crt_flags
;
528 static inline void crypto_tfm_set_flags(struct crypto_tfm
*tfm
, u32 flags
)
530 tfm
->crt_flags
|= flags
;
533 static inline void crypto_tfm_clear_flags(struct crypto_tfm
*tfm
, u32 flags
)
535 tfm
->crt_flags
&= ~flags
;
538 static inline void *crypto_tfm_ctx(struct crypto_tfm
*tfm
)
540 return tfm
->__crt_ctx
;
543 static inline unsigned int crypto_tfm_ctx_alignment(void)
545 struct crypto_tfm
*tfm
;
546 return __alignof__(tfm
->__crt_ctx
);
552 static inline struct crypto_ablkcipher
*__crypto_ablkcipher_cast(
553 struct crypto_tfm
*tfm
)
555 return (struct crypto_ablkcipher
*)tfm
;
558 static inline u32
crypto_skcipher_type(u32 type
)
560 type
&= ~(CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_GENIV
);
561 type
|= CRYPTO_ALG_TYPE_BLKCIPHER
;
565 static inline u32
crypto_skcipher_mask(u32 mask
)
567 mask
&= ~(CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_GENIV
);
568 mask
|= CRYPTO_ALG_TYPE_BLKCIPHER_MASK
;
572 struct crypto_ablkcipher
*crypto_alloc_ablkcipher(const char *alg_name
,
575 static inline struct crypto_tfm
*crypto_ablkcipher_tfm(
576 struct crypto_ablkcipher
*tfm
)
581 static inline void crypto_free_ablkcipher(struct crypto_ablkcipher
*tfm
)
583 crypto_free_tfm(crypto_ablkcipher_tfm(tfm
));
586 static inline int crypto_has_ablkcipher(const char *alg_name
, u32 type
,
589 return crypto_has_alg(alg_name
, crypto_skcipher_type(type
),
590 crypto_skcipher_mask(mask
));
593 static inline struct ablkcipher_tfm
*crypto_ablkcipher_crt(
594 struct crypto_ablkcipher
*tfm
)
596 return &crypto_ablkcipher_tfm(tfm
)->crt_ablkcipher
;
599 static inline unsigned int crypto_ablkcipher_ivsize(
600 struct crypto_ablkcipher
*tfm
)
602 return crypto_ablkcipher_crt(tfm
)->ivsize
;
605 static inline unsigned int crypto_ablkcipher_blocksize(
606 struct crypto_ablkcipher
*tfm
)
608 return crypto_tfm_alg_blocksize(crypto_ablkcipher_tfm(tfm
));
611 static inline unsigned int crypto_ablkcipher_alignmask(
612 struct crypto_ablkcipher
*tfm
)
614 return crypto_tfm_alg_alignmask(crypto_ablkcipher_tfm(tfm
));
617 static inline u32
crypto_ablkcipher_get_flags(struct crypto_ablkcipher
*tfm
)
619 return crypto_tfm_get_flags(crypto_ablkcipher_tfm(tfm
));
622 static inline void crypto_ablkcipher_set_flags(struct crypto_ablkcipher
*tfm
,
625 crypto_tfm_set_flags(crypto_ablkcipher_tfm(tfm
), flags
);
628 static inline void crypto_ablkcipher_clear_flags(struct crypto_ablkcipher
*tfm
,
631 crypto_tfm_clear_flags(crypto_ablkcipher_tfm(tfm
), flags
);
634 static inline int crypto_ablkcipher_setkey(struct crypto_ablkcipher
*tfm
,
635 const u8
*key
, unsigned int keylen
)
637 struct ablkcipher_tfm
*crt
= crypto_ablkcipher_crt(tfm
);
639 return crt
->setkey(crt
->base
, key
, keylen
);
642 static inline struct crypto_ablkcipher
*crypto_ablkcipher_reqtfm(
643 struct ablkcipher_request
*req
)
645 return __crypto_ablkcipher_cast(req
->base
.tfm
);
648 static inline int crypto_ablkcipher_encrypt(struct ablkcipher_request
*req
)
650 struct ablkcipher_tfm
*crt
=
651 crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req
));
652 return crt
->encrypt(req
);
655 static inline int crypto_ablkcipher_decrypt(struct ablkcipher_request
*req
)
657 struct ablkcipher_tfm
*crt
=
658 crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req
));
659 return crt
->decrypt(req
);
662 static inline unsigned int crypto_ablkcipher_reqsize(
663 struct crypto_ablkcipher
*tfm
)
665 return crypto_ablkcipher_crt(tfm
)->reqsize
;
668 static inline void ablkcipher_request_set_tfm(
669 struct ablkcipher_request
*req
, struct crypto_ablkcipher
*tfm
)
671 req
->base
.tfm
= crypto_ablkcipher_tfm(crypto_ablkcipher_crt(tfm
)->base
);
674 static inline struct ablkcipher_request
*ablkcipher_request_cast(
675 struct crypto_async_request
*req
)
677 return container_of(req
, struct ablkcipher_request
, base
);
680 static inline struct ablkcipher_request
*ablkcipher_request_alloc(
681 struct crypto_ablkcipher
*tfm
, gfp_t gfp
)
683 struct ablkcipher_request
*req
;
685 req
= kmalloc(sizeof(struct ablkcipher_request
) +
686 crypto_ablkcipher_reqsize(tfm
), gfp
);
689 ablkcipher_request_set_tfm(req
, tfm
);
694 static inline void ablkcipher_request_free(struct ablkcipher_request
*req
)
699 static inline void ablkcipher_request_set_callback(
700 struct ablkcipher_request
*req
,
701 u32 flags
, crypto_completion_t complete
, void *data
)
703 req
->base
.complete
= complete
;
704 req
->base
.data
= data
;
705 req
->base
.flags
= flags
;
708 static inline void ablkcipher_request_set_crypt(
709 struct ablkcipher_request
*req
,
710 struct scatterlist
*src
, struct scatterlist
*dst
,
711 unsigned int nbytes
, void *iv
)
715 req
->nbytes
= nbytes
;
719 static inline struct crypto_aead
*__crypto_aead_cast(struct crypto_tfm
*tfm
)
721 return (struct crypto_aead
*)tfm
;
724 struct crypto_aead
*crypto_alloc_aead(const char *alg_name
, u32 type
, u32 mask
);
726 static inline struct crypto_tfm
*crypto_aead_tfm(struct crypto_aead
*tfm
)
731 static inline void crypto_free_aead(struct crypto_aead
*tfm
)
733 crypto_free_tfm(crypto_aead_tfm(tfm
));
736 static inline struct aead_tfm
*crypto_aead_crt(struct crypto_aead
*tfm
)
738 return &crypto_aead_tfm(tfm
)->crt_aead
;
741 static inline unsigned int crypto_aead_ivsize(struct crypto_aead
*tfm
)
743 return crypto_aead_crt(tfm
)->ivsize
;
746 static inline unsigned int crypto_aead_authsize(struct crypto_aead
*tfm
)
748 return crypto_aead_crt(tfm
)->authsize
;
751 static inline unsigned int crypto_aead_blocksize(struct crypto_aead
*tfm
)
753 return crypto_tfm_alg_blocksize(crypto_aead_tfm(tfm
));
756 static inline unsigned int crypto_aead_alignmask(struct crypto_aead
*tfm
)
758 return crypto_tfm_alg_alignmask(crypto_aead_tfm(tfm
));
761 static inline u32
crypto_aead_get_flags(struct crypto_aead
*tfm
)
763 return crypto_tfm_get_flags(crypto_aead_tfm(tfm
));
766 static inline void crypto_aead_set_flags(struct crypto_aead
*tfm
, u32 flags
)
768 crypto_tfm_set_flags(crypto_aead_tfm(tfm
), flags
);
771 static inline void crypto_aead_clear_flags(struct crypto_aead
*tfm
, u32 flags
)
773 crypto_tfm_clear_flags(crypto_aead_tfm(tfm
), flags
);
776 static inline int crypto_aead_setkey(struct crypto_aead
*tfm
, const u8
*key
,
779 struct aead_tfm
*crt
= crypto_aead_crt(tfm
);
781 return crt
->setkey(crt
->base
, key
, keylen
);
784 int crypto_aead_setauthsize(struct crypto_aead
*tfm
, unsigned int authsize
);
786 static inline struct crypto_aead
*crypto_aead_reqtfm(struct aead_request
*req
)
788 return __crypto_aead_cast(req
->base
.tfm
);
791 static inline int crypto_aead_encrypt(struct aead_request
*req
)
793 return crypto_aead_crt(crypto_aead_reqtfm(req
))->encrypt(req
);
796 static inline int crypto_aead_decrypt(struct aead_request
*req
)
798 return crypto_aead_crt(crypto_aead_reqtfm(req
))->decrypt(req
);
801 static inline unsigned int crypto_aead_reqsize(struct crypto_aead
*tfm
)
803 return crypto_aead_crt(tfm
)->reqsize
;
806 static inline void aead_request_set_tfm(struct aead_request
*req
,
807 struct crypto_aead
*tfm
)
809 req
->base
.tfm
= crypto_aead_tfm(crypto_aead_crt(tfm
)->base
);
812 static inline struct aead_request
*aead_request_alloc(struct crypto_aead
*tfm
,
815 struct aead_request
*req
;
817 req
= kmalloc(sizeof(*req
) + crypto_aead_reqsize(tfm
), gfp
);
820 aead_request_set_tfm(req
, tfm
);
825 static inline void aead_request_free(struct aead_request
*req
)
830 static inline void aead_request_set_callback(struct aead_request
*req
,
832 crypto_completion_t complete
,
835 req
->base
.complete
= complete
;
836 req
->base
.data
= data
;
837 req
->base
.flags
= flags
;
840 static inline void aead_request_set_crypt(struct aead_request
*req
,
841 struct scatterlist
*src
,
842 struct scatterlist
*dst
,
843 unsigned int cryptlen
, u8
*iv
)
847 req
->cryptlen
= cryptlen
;
851 static inline void aead_request_set_assoc(struct aead_request
*req
,
852 struct scatterlist
*assoc
,
853 unsigned int assoclen
)
856 req
->assoclen
= assoclen
;
859 static inline struct crypto_blkcipher
*__crypto_blkcipher_cast(
860 struct crypto_tfm
*tfm
)
862 return (struct crypto_blkcipher
*)tfm
;
865 static inline struct crypto_blkcipher
*crypto_blkcipher_cast(
866 struct crypto_tfm
*tfm
)
868 BUG_ON(crypto_tfm_alg_type(tfm
) != CRYPTO_ALG_TYPE_BLKCIPHER
);
869 return __crypto_blkcipher_cast(tfm
);
872 static inline struct crypto_blkcipher
*crypto_alloc_blkcipher(
873 const char *alg_name
, u32 type
, u32 mask
)
875 type
&= ~CRYPTO_ALG_TYPE_MASK
;
876 type
|= CRYPTO_ALG_TYPE_BLKCIPHER
;
877 mask
|= CRYPTO_ALG_TYPE_MASK
;
879 return __crypto_blkcipher_cast(crypto_alloc_base(alg_name
, type
, mask
));
882 static inline struct crypto_tfm
*crypto_blkcipher_tfm(
883 struct crypto_blkcipher
*tfm
)
888 static inline void crypto_free_blkcipher(struct crypto_blkcipher
*tfm
)
890 crypto_free_tfm(crypto_blkcipher_tfm(tfm
));
893 static inline int crypto_has_blkcipher(const char *alg_name
, u32 type
, u32 mask
)
895 type
&= ~CRYPTO_ALG_TYPE_MASK
;
896 type
|= CRYPTO_ALG_TYPE_BLKCIPHER
;
897 mask
|= CRYPTO_ALG_TYPE_MASK
;
899 return crypto_has_alg(alg_name
, type
, mask
);
902 static inline const char *crypto_blkcipher_name(struct crypto_blkcipher
*tfm
)
904 return crypto_tfm_alg_name(crypto_blkcipher_tfm(tfm
));
907 static inline struct blkcipher_tfm
*crypto_blkcipher_crt(
908 struct crypto_blkcipher
*tfm
)
910 return &crypto_blkcipher_tfm(tfm
)->crt_blkcipher
;
913 static inline struct blkcipher_alg
*crypto_blkcipher_alg(
914 struct crypto_blkcipher
*tfm
)
916 return &crypto_blkcipher_tfm(tfm
)->__crt_alg
->cra_blkcipher
;
919 static inline unsigned int crypto_blkcipher_ivsize(struct crypto_blkcipher
*tfm
)
921 return crypto_blkcipher_alg(tfm
)->ivsize
;
924 static inline unsigned int crypto_blkcipher_blocksize(
925 struct crypto_blkcipher
*tfm
)
927 return crypto_tfm_alg_blocksize(crypto_blkcipher_tfm(tfm
));
930 static inline unsigned int crypto_blkcipher_alignmask(
931 struct crypto_blkcipher
*tfm
)
933 return crypto_tfm_alg_alignmask(crypto_blkcipher_tfm(tfm
));
936 static inline u32
crypto_blkcipher_get_flags(struct crypto_blkcipher
*tfm
)
938 return crypto_tfm_get_flags(crypto_blkcipher_tfm(tfm
));
941 static inline void crypto_blkcipher_set_flags(struct crypto_blkcipher
*tfm
,
944 crypto_tfm_set_flags(crypto_blkcipher_tfm(tfm
), flags
);
947 static inline void crypto_blkcipher_clear_flags(struct crypto_blkcipher
*tfm
,
950 crypto_tfm_clear_flags(crypto_blkcipher_tfm(tfm
), flags
);
953 static inline int crypto_blkcipher_setkey(struct crypto_blkcipher
*tfm
,
954 const u8
*key
, unsigned int keylen
)
956 return crypto_blkcipher_crt(tfm
)->setkey(crypto_blkcipher_tfm(tfm
),
960 static inline int crypto_blkcipher_encrypt(struct blkcipher_desc
*desc
,
961 struct scatterlist
*dst
,
962 struct scatterlist
*src
,
965 desc
->info
= crypto_blkcipher_crt(desc
->tfm
)->iv
;
966 return crypto_blkcipher_crt(desc
->tfm
)->encrypt(desc
, dst
, src
, nbytes
);
969 static inline int crypto_blkcipher_encrypt_iv(struct blkcipher_desc
*desc
,
970 struct scatterlist
*dst
,
971 struct scatterlist
*src
,
974 return crypto_blkcipher_crt(desc
->tfm
)->encrypt(desc
, dst
, src
, nbytes
);
977 static inline int crypto_blkcipher_decrypt(struct blkcipher_desc
*desc
,
978 struct scatterlist
*dst
,
979 struct scatterlist
*src
,
982 desc
->info
= crypto_blkcipher_crt(desc
->tfm
)->iv
;
983 return crypto_blkcipher_crt(desc
->tfm
)->decrypt(desc
, dst
, src
, nbytes
);
986 static inline int crypto_blkcipher_decrypt_iv(struct blkcipher_desc
*desc
,
987 struct scatterlist
*dst
,
988 struct scatterlist
*src
,
991 return crypto_blkcipher_crt(desc
->tfm
)->decrypt(desc
, dst
, src
, nbytes
);
994 static inline void crypto_blkcipher_set_iv(struct crypto_blkcipher
*tfm
,
995 const u8
*src
, unsigned int len
)
997 memcpy(crypto_blkcipher_crt(tfm
)->iv
, src
, len
);
1000 static inline void crypto_blkcipher_get_iv(struct crypto_blkcipher
*tfm
,
1001 u8
*dst
, unsigned int len
)
1003 memcpy(dst
, crypto_blkcipher_crt(tfm
)->iv
, len
);
1006 static inline struct crypto_cipher
*__crypto_cipher_cast(struct crypto_tfm
*tfm
)
1008 return (struct crypto_cipher
*)tfm
;
1011 static inline struct crypto_cipher
*crypto_cipher_cast(struct crypto_tfm
*tfm
)
1013 BUG_ON(crypto_tfm_alg_type(tfm
) != CRYPTO_ALG_TYPE_CIPHER
);
1014 return __crypto_cipher_cast(tfm
);
1017 static inline struct crypto_cipher
*crypto_alloc_cipher(const char *alg_name
,
1020 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1021 type
|= CRYPTO_ALG_TYPE_CIPHER
;
1022 mask
|= CRYPTO_ALG_TYPE_MASK
;
1024 return __crypto_cipher_cast(crypto_alloc_base(alg_name
, type
, mask
));
1027 static inline struct crypto_tfm
*crypto_cipher_tfm(struct crypto_cipher
*tfm
)
1032 static inline void crypto_free_cipher(struct crypto_cipher
*tfm
)
1034 crypto_free_tfm(crypto_cipher_tfm(tfm
));
1037 static inline int crypto_has_cipher(const char *alg_name
, u32 type
, u32 mask
)
1039 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1040 type
|= CRYPTO_ALG_TYPE_CIPHER
;
1041 mask
|= CRYPTO_ALG_TYPE_MASK
;
1043 return crypto_has_alg(alg_name
, type
, mask
);
1046 static inline struct cipher_tfm
*crypto_cipher_crt(struct crypto_cipher
*tfm
)
1048 return &crypto_cipher_tfm(tfm
)->crt_cipher
;
1051 static inline unsigned int crypto_cipher_blocksize(struct crypto_cipher
*tfm
)
1053 return crypto_tfm_alg_blocksize(crypto_cipher_tfm(tfm
));
1056 static inline unsigned int crypto_cipher_alignmask(struct crypto_cipher
*tfm
)
1058 return crypto_tfm_alg_alignmask(crypto_cipher_tfm(tfm
));
1061 static inline u32
crypto_cipher_get_flags(struct crypto_cipher
*tfm
)
1063 return crypto_tfm_get_flags(crypto_cipher_tfm(tfm
));
1066 static inline void crypto_cipher_set_flags(struct crypto_cipher
*tfm
,
1069 crypto_tfm_set_flags(crypto_cipher_tfm(tfm
), flags
);
1072 static inline void crypto_cipher_clear_flags(struct crypto_cipher
*tfm
,
1075 crypto_tfm_clear_flags(crypto_cipher_tfm(tfm
), flags
);
1078 static inline int crypto_cipher_setkey(struct crypto_cipher
*tfm
,
1079 const u8
*key
, unsigned int keylen
)
1081 return crypto_cipher_crt(tfm
)->cit_setkey(crypto_cipher_tfm(tfm
),
1085 static inline void crypto_cipher_encrypt_one(struct crypto_cipher
*tfm
,
1086 u8
*dst
, const u8
*src
)
1088 crypto_cipher_crt(tfm
)->cit_encrypt_one(crypto_cipher_tfm(tfm
),
1092 static inline void crypto_cipher_decrypt_one(struct crypto_cipher
*tfm
,
1093 u8
*dst
, const u8
*src
)
1095 crypto_cipher_crt(tfm
)->cit_decrypt_one(crypto_cipher_tfm(tfm
),
1099 static inline struct crypto_hash
*__crypto_hash_cast(struct crypto_tfm
*tfm
)
1101 return (struct crypto_hash
*)tfm
;
1104 static inline struct crypto_hash
*crypto_hash_cast(struct crypto_tfm
*tfm
)
1106 BUG_ON((crypto_tfm_alg_type(tfm
) ^ CRYPTO_ALG_TYPE_HASH
) &
1107 CRYPTO_ALG_TYPE_HASH_MASK
);
1108 return __crypto_hash_cast(tfm
);
1111 static inline struct crypto_hash
*crypto_alloc_hash(const char *alg_name
,
1114 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1115 mask
&= ~CRYPTO_ALG_TYPE_MASK
;
1116 type
|= CRYPTO_ALG_TYPE_HASH
;
1117 mask
|= CRYPTO_ALG_TYPE_HASH_MASK
;
1119 return __crypto_hash_cast(crypto_alloc_base(alg_name
, type
, mask
));
1122 static inline struct crypto_tfm
*crypto_hash_tfm(struct crypto_hash
*tfm
)
1127 static inline void crypto_free_hash(struct crypto_hash
*tfm
)
1129 crypto_free_tfm(crypto_hash_tfm(tfm
));
1132 static inline int crypto_has_hash(const char *alg_name
, u32 type
, u32 mask
)
1134 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1135 mask
&= ~CRYPTO_ALG_TYPE_MASK
;
1136 type
|= CRYPTO_ALG_TYPE_HASH
;
1137 mask
|= CRYPTO_ALG_TYPE_HASH_MASK
;
1139 return crypto_has_alg(alg_name
, type
, mask
);
1142 static inline struct hash_tfm
*crypto_hash_crt(struct crypto_hash
*tfm
)
1144 return &crypto_hash_tfm(tfm
)->crt_hash
;
1147 static inline unsigned int crypto_hash_blocksize(struct crypto_hash
*tfm
)
1149 return crypto_tfm_alg_blocksize(crypto_hash_tfm(tfm
));
1152 static inline unsigned int crypto_hash_alignmask(struct crypto_hash
*tfm
)
1154 return crypto_tfm_alg_alignmask(crypto_hash_tfm(tfm
));
1157 static inline unsigned int crypto_hash_digestsize(struct crypto_hash
*tfm
)
1159 return crypto_hash_crt(tfm
)->digestsize
;
1162 static inline u32
crypto_hash_get_flags(struct crypto_hash
*tfm
)
1164 return crypto_tfm_get_flags(crypto_hash_tfm(tfm
));
1167 static inline void crypto_hash_set_flags(struct crypto_hash
*tfm
, u32 flags
)
1169 crypto_tfm_set_flags(crypto_hash_tfm(tfm
), flags
);
1172 static inline void crypto_hash_clear_flags(struct crypto_hash
*tfm
, u32 flags
)
1174 crypto_tfm_clear_flags(crypto_hash_tfm(tfm
), flags
);
1177 static inline int crypto_hash_init(struct hash_desc
*desc
)
1179 return crypto_hash_crt(desc
->tfm
)->init(desc
);
1182 static inline int crypto_hash_update(struct hash_desc
*desc
,
1183 struct scatterlist
*sg
,
1184 unsigned int nbytes
)
1186 return crypto_hash_crt(desc
->tfm
)->update(desc
, sg
, nbytes
);
1189 static inline int crypto_hash_final(struct hash_desc
*desc
, u8
*out
)
1191 return crypto_hash_crt(desc
->tfm
)->final(desc
, out
);
1194 static inline int crypto_hash_digest(struct hash_desc
*desc
,
1195 struct scatterlist
*sg
,
1196 unsigned int nbytes
, u8
*out
)
1198 return crypto_hash_crt(desc
->tfm
)->digest(desc
, sg
, nbytes
, out
);
1201 static inline int crypto_hash_setkey(struct crypto_hash
*hash
,
1202 const u8
*key
, unsigned int keylen
)
1204 return crypto_hash_crt(hash
)->setkey(hash
, key
, keylen
);
1207 static inline struct crypto_comp
*__crypto_comp_cast(struct crypto_tfm
*tfm
)
1209 return (struct crypto_comp
*)tfm
;
1212 static inline struct crypto_comp
*crypto_comp_cast(struct crypto_tfm
*tfm
)
1214 BUG_ON((crypto_tfm_alg_type(tfm
) ^ CRYPTO_ALG_TYPE_COMPRESS
) &
1215 CRYPTO_ALG_TYPE_MASK
);
1216 return __crypto_comp_cast(tfm
);
1219 static inline struct crypto_comp
*crypto_alloc_comp(const char *alg_name
,
1222 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1223 type
|= CRYPTO_ALG_TYPE_COMPRESS
;
1224 mask
|= CRYPTO_ALG_TYPE_MASK
;
1226 return __crypto_comp_cast(crypto_alloc_base(alg_name
, type
, mask
));
1229 static inline struct crypto_tfm
*crypto_comp_tfm(struct crypto_comp
*tfm
)
1234 static inline void crypto_free_comp(struct crypto_comp
*tfm
)
1236 crypto_free_tfm(crypto_comp_tfm(tfm
));
1239 static inline int crypto_has_comp(const char *alg_name
, u32 type
, u32 mask
)
1241 type
&= ~CRYPTO_ALG_TYPE_MASK
;
1242 type
|= CRYPTO_ALG_TYPE_COMPRESS
;
1243 mask
|= CRYPTO_ALG_TYPE_MASK
;
1245 return crypto_has_alg(alg_name
, type
, mask
);
1248 static inline const char *crypto_comp_name(struct crypto_comp
*tfm
)
1250 return crypto_tfm_alg_name(crypto_comp_tfm(tfm
));
1253 static inline struct compress_tfm
*crypto_comp_crt(struct crypto_comp
*tfm
)
1255 return &crypto_comp_tfm(tfm
)->crt_compress
;
1258 static inline int crypto_comp_compress(struct crypto_comp
*tfm
,
1259 const u8
*src
, unsigned int slen
,
1260 u8
*dst
, unsigned int *dlen
)
1262 return crypto_comp_crt(tfm
)->cot_compress(crypto_comp_tfm(tfm
),
1263 src
, slen
, dst
, dlen
);
1266 static inline int crypto_comp_decompress(struct crypto_comp
*tfm
,
1267 const u8
*src
, unsigned int slen
,
1268 u8
*dst
, unsigned int *dlen
)
1270 return crypto_comp_crt(tfm
)->cot_decompress(crypto_comp_tfm(tfm
),
1271 src
, slen
, dst
, dlen
);
1274 #endif /* _LINUX_CRYPTO_H */