123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605 |
- #ifndef _LINUX_CRYPTO_H
- #define _LINUX_CRYPTO_H
- #include <linux/atomic.h>
- #include <linux/kernel.h>
- #include <linux/list.h>
- #include <linux/bug.h>
- #include <linux/slab.h>
- #include <linux/string.h>
- #include <linux/uaccess.h>
- #define MODULE_ALIAS_CRYPTO(name) \
- __MODULE_INFO(alias, alias_userspace, name); \
- __MODULE_INFO(alias, alias_crypto, "crypto-" name)
- #define CRYPTO_ALG_TYPE_MASK 0x0000000f
- #define CRYPTO_ALG_TYPE_CIPHER 0x00000001
- #define CRYPTO_ALG_TYPE_COMPRESS 0x00000002
- #define CRYPTO_ALG_TYPE_AEAD 0x00000003
- #define CRYPTO_ALG_TYPE_BLKCIPHER 0x00000004
- #define CRYPTO_ALG_TYPE_ABLKCIPHER 0x00000005
- #define CRYPTO_ALG_TYPE_SKCIPHER 0x00000005
- #define CRYPTO_ALG_TYPE_GIVCIPHER 0x00000006
- #define CRYPTO_ALG_TYPE_KPP 0x00000008
- #define CRYPTO_ALG_TYPE_RNG 0x0000000c
- #define CRYPTO_ALG_TYPE_AKCIPHER 0x0000000d
- #define CRYPTO_ALG_TYPE_DIGEST 0x0000000e
- #define CRYPTO_ALG_TYPE_HASH 0x0000000e
- #define CRYPTO_ALG_TYPE_SHASH 0x0000000e
- #define CRYPTO_ALG_TYPE_AHASH 0x0000000f
- #define CRYPTO_ALG_TYPE_HASH_MASK 0x0000000e
- #define CRYPTO_ALG_TYPE_AHASH_MASK 0x0000000e
- #define CRYPTO_ALG_TYPE_BLKCIPHER_MASK 0x0000000c
- #define CRYPTO_ALG_LARVAL 0x00000010
- #define CRYPTO_ALG_DEAD 0x00000020
- #define CRYPTO_ALG_DYING 0x00000040
- #define CRYPTO_ALG_ASYNC 0x00000080
- #define CRYPTO_ALG_NEED_FALLBACK 0x00000100
- #define CRYPTO_ALG_GENIV 0x00000200
- #define CRYPTO_ALG_TESTED 0x00000400
- #define CRYPTO_ALG_INSTANCE 0x00000800
- #define CRYPTO_ALG_KERN_DRIVER_ONLY 0x00001000
- #define CRYPTO_ALG_INTERNAL 0x00002000
- #define CRYPTO_TFM_REQ_MASK 0x000fff00
- #define CRYPTO_TFM_RES_MASK 0xfff00000
- #define CRYPTO_TFM_REQ_WEAK_KEY 0x00000100
- #define CRYPTO_TFM_REQ_MAY_SLEEP 0x00000200
- #define CRYPTO_TFM_REQ_MAY_BACKLOG 0x00000400
- #define CRYPTO_TFM_RES_WEAK_KEY 0x00100000
- #define CRYPTO_TFM_RES_BAD_KEY_LEN 0x00200000
- #define CRYPTO_TFM_RES_BAD_KEY_SCHED 0x00400000
- #define CRYPTO_TFM_RES_BAD_BLOCK_LEN 0x00800000
- #define CRYPTO_TFM_RES_BAD_FLAGS 0x01000000
- #define CRYPTO_MAX_ALG_NAME 64
- #define CRYPTO_MINALIGN ARCH_KMALLOC_MINALIGN
- #define CRYPTO_MINALIGN_ATTR __attribute__ ((__aligned__(CRYPTO_MINALIGN)))
- struct scatterlist;
- struct crypto_ablkcipher;
- struct crypto_async_request;
- struct crypto_blkcipher;
- struct crypto_tfm;
- struct crypto_type;
- struct skcipher_givcrypt_request;
- typedef void (*crypto_completion_t)(struct crypto_async_request *req, int err);
- struct crypto_async_request {
- struct list_head list;
- crypto_completion_t complete;
- void *data;
- struct crypto_tfm *tfm;
- u32 flags;
- };
- struct ablkcipher_request {
- struct crypto_async_request base;
- unsigned int nbytes;
- void *info;
- struct scatterlist *src;
- struct scatterlist *dst;
- void *__ctx[] CRYPTO_MINALIGN_ATTR;
- };
- struct blkcipher_desc {
- struct crypto_blkcipher *tfm;
- void *info;
- u32 flags;
- };
- struct cipher_desc {
- struct crypto_tfm *tfm;
- void (*crfn)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
- unsigned int (*prfn)(const struct cipher_desc *desc, u8 *dst,
- const u8 *src, unsigned int nbytes);
- void *info;
- };
- struct ablkcipher_alg {
- int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key,
- unsigned int keylen);
- int (*encrypt)(struct ablkcipher_request *req);
- int (*decrypt)(struct ablkcipher_request *req);
- int (*givencrypt)(struct skcipher_givcrypt_request *req);
- int (*givdecrypt)(struct skcipher_givcrypt_request *req);
- const char *geniv;
- unsigned int min_keysize;
- unsigned int max_keysize;
- unsigned int ivsize;
- };
- struct blkcipher_alg {
- int (*setkey)(struct crypto_tfm *tfm, const u8 *key,
- unsigned int keylen);
- int (*encrypt)(struct blkcipher_desc *desc,
- struct scatterlist *dst, struct scatterlist *src,
- unsigned int nbytes);
- int (*decrypt)(struct blkcipher_desc *desc,
- struct scatterlist *dst, struct scatterlist *src,
- unsigned int nbytes);
- const char *geniv;
- unsigned int min_keysize;
- unsigned int max_keysize;
- unsigned int ivsize;
- };
- struct cipher_alg {
- unsigned int cia_min_keysize;
- unsigned int cia_max_keysize;
- int (*cia_setkey)(struct crypto_tfm *tfm, const u8 *key,
- unsigned int keylen);
- void (*cia_encrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
- void (*cia_decrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
- };
- struct compress_alg {
- int (*coa_compress)(struct crypto_tfm *tfm, const u8 *src,
- unsigned int slen, u8 *dst, unsigned int *dlen);
- int (*coa_decompress)(struct crypto_tfm *tfm, const u8 *src,
- unsigned int slen, u8 *dst, unsigned int *dlen);
- };
- #define cra_ablkcipher cra_u.ablkcipher
- #define cra_blkcipher cra_u.blkcipher
- #define cra_cipher cra_u.cipher
- #define cra_compress cra_u.compress
- struct crypto_alg {
- struct list_head cra_list;
- struct list_head cra_users;
- u32 cra_flags;
- unsigned int cra_blocksize;
- unsigned int cra_ctxsize;
- unsigned int cra_alignmask;
- int cra_priority;
- atomic_t cra_refcnt;
- char cra_name[CRYPTO_MAX_ALG_NAME];
- char cra_driver_name[CRYPTO_MAX_ALG_NAME];
- const struct crypto_type *cra_type;
- union {
- struct ablkcipher_alg ablkcipher;
- struct blkcipher_alg blkcipher;
- struct cipher_alg cipher;
- struct compress_alg compress;
- } cra_u;
- int (*cra_init)(struct crypto_tfm *tfm);
- void (*cra_exit)(struct crypto_tfm *tfm);
- void (*cra_destroy)(struct crypto_alg *alg);
-
- struct module *cra_module;
- } CRYPTO_MINALIGN_ATTR;
- int crypto_register_alg(struct crypto_alg *alg);
- int crypto_unregister_alg(struct crypto_alg *alg);
- int crypto_register_algs(struct crypto_alg *algs, int count);
- int crypto_unregister_algs(struct crypto_alg *algs, int count);
- int crypto_has_alg(const char *name, u32 type, u32 mask);
- struct ablkcipher_tfm {
- int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key,
- unsigned int keylen);
- int (*encrypt)(struct ablkcipher_request *req);
- int (*decrypt)(struct ablkcipher_request *req);
- struct crypto_ablkcipher *base;
- unsigned int ivsize;
- unsigned int reqsize;
- };
- struct blkcipher_tfm {
- void *iv;
- int (*setkey)(struct crypto_tfm *tfm, const u8 *key,
- unsigned int keylen);
- int (*encrypt)(struct blkcipher_desc *desc, struct scatterlist *dst,
- struct scatterlist *src, unsigned int nbytes);
- int (*decrypt)(struct blkcipher_desc *desc, struct scatterlist *dst,
- struct scatterlist *src, unsigned int nbytes);
- };
- struct cipher_tfm {
- int (*cit_setkey)(struct crypto_tfm *tfm,
- const u8 *key, unsigned int keylen);
- void (*cit_encrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
- void (*cit_decrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
- };
- struct compress_tfm {
- int (*cot_compress)(struct crypto_tfm *tfm,
- const u8 *src, unsigned int slen,
- u8 *dst, unsigned int *dlen);
- int (*cot_decompress)(struct crypto_tfm *tfm,
- const u8 *src, unsigned int slen,
- u8 *dst, unsigned int *dlen);
- };
- #define crt_ablkcipher crt_u.ablkcipher
- #define crt_blkcipher crt_u.blkcipher
- #define crt_cipher crt_u.cipher
- #define crt_compress crt_u.compress
- struct crypto_tfm {
- u32 crt_flags;
-
- union {
- struct ablkcipher_tfm ablkcipher;
- struct blkcipher_tfm blkcipher;
- struct cipher_tfm cipher;
- struct compress_tfm compress;
- } crt_u;
- void (*exit)(struct crypto_tfm *tfm);
-
- struct crypto_alg *__crt_alg;
- void *__crt_ctx[] CRYPTO_MINALIGN_ATTR;
- };
- struct crypto_ablkcipher {
- struct crypto_tfm base;
- };
- struct crypto_blkcipher {
- struct crypto_tfm base;
- };
- struct crypto_cipher {
- struct crypto_tfm base;
- };
- struct crypto_comp {
- struct crypto_tfm base;
- };
- enum {
- CRYPTOA_UNSPEC,
- CRYPTOA_ALG,
- CRYPTOA_TYPE,
- CRYPTOA_U32,
- __CRYPTOA_MAX,
- };
- #define CRYPTOA_MAX (__CRYPTOA_MAX - 1)
- #define CRYPTO_MAX_ATTRS 32
- struct crypto_attr_alg {
- char name[CRYPTO_MAX_ALG_NAME];
- };
- struct crypto_attr_type {
- u32 type;
- u32 mask;
- };
- struct crypto_attr_u32 {
- u32 num;
- };
-
- struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask);
- void crypto_destroy_tfm(void *mem, struct crypto_tfm *tfm);
- static inline void crypto_free_tfm(struct crypto_tfm *tfm)
- {
- return crypto_destroy_tfm(tfm, tfm);
- }
- int alg_test(const char *driver, const char *alg, u32 type, u32 mask);
- static inline const char *crypto_tfm_alg_name(struct crypto_tfm *tfm)
- {
- return tfm->__crt_alg->cra_name;
- }
- static inline const char *crypto_tfm_alg_driver_name(struct crypto_tfm *tfm)
- {
- return tfm->__crt_alg->cra_driver_name;
- }
- static inline int crypto_tfm_alg_priority(struct crypto_tfm *tfm)
- {
- return tfm->__crt_alg->cra_priority;
- }
- static inline u32 crypto_tfm_alg_type(struct crypto_tfm *tfm)
- {
- return tfm->__crt_alg->cra_flags & CRYPTO_ALG_TYPE_MASK;
- }
- static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm *tfm)
- {
- return tfm->__crt_alg->cra_blocksize;
- }
- static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm *tfm)
- {
- return tfm->__crt_alg->cra_alignmask;
- }
- static inline u32 crypto_tfm_get_flags(struct crypto_tfm *tfm)
- {
- return tfm->crt_flags;
- }
- static inline void crypto_tfm_set_flags(struct crypto_tfm *tfm, u32 flags)
- {
- tfm->crt_flags |= flags;
- }
- static inline void crypto_tfm_clear_flags(struct crypto_tfm *tfm, u32 flags)
- {
- tfm->crt_flags &= ~flags;
- }
- static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm)
- {
- return tfm->__crt_ctx;
- }
- static inline unsigned int crypto_tfm_ctx_alignment(void)
- {
- struct crypto_tfm *tfm;
- return __alignof__(tfm->__crt_ctx);
- }
- static inline struct crypto_ablkcipher *__crypto_ablkcipher_cast(
- struct crypto_tfm *tfm)
- {
- return (struct crypto_ablkcipher *)tfm;
- }
- static inline u32 crypto_skcipher_type(u32 type)
- {
- type &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
- type |= CRYPTO_ALG_TYPE_BLKCIPHER;
- return type;
- }
- static inline u32 crypto_skcipher_mask(u32 mask)
- {
- mask &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
- mask |= CRYPTO_ALG_TYPE_BLKCIPHER_MASK;
- return mask;
- }
- static inline struct crypto_tfm *crypto_ablkcipher_tfm(
- struct crypto_ablkcipher *tfm)
- {
- return &tfm->base;
- }
- static inline void crypto_free_ablkcipher(struct crypto_ablkcipher *tfm)
- {
- crypto_free_tfm(crypto_ablkcipher_tfm(tfm));
- }
- static inline int crypto_has_ablkcipher(const char *alg_name, u32 type,
- u32 mask)
- {
- return crypto_has_alg(alg_name, crypto_skcipher_type(type),
- crypto_skcipher_mask(mask));
- }
- static inline struct ablkcipher_tfm *crypto_ablkcipher_crt(
- struct crypto_ablkcipher *tfm)
- {
- return &crypto_ablkcipher_tfm(tfm)->crt_ablkcipher;
- }
- static inline unsigned int crypto_ablkcipher_ivsize(
- struct crypto_ablkcipher *tfm)
- {
- return crypto_ablkcipher_crt(tfm)->ivsize;
- }
- static inline unsigned int crypto_ablkcipher_blocksize(
- struct crypto_ablkcipher *tfm)
- {
- return crypto_tfm_alg_blocksize(crypto_ablkcipher_tfm(tfm));
- }
- static inline unsigned int crypto_ablkcipher_alignmask(
- struct crypto_ablkcipher *tfm)
- {
- return crypto_tfm_alg_alignmask(crypto_ablkcipher_tfm(tfm));
- }
- static inline u32 crypto_ablkcipher_get_flags(struct crypto_ablkcipher *tfm)
- {
- return crypto_tfm_get_flags(crypto_ablkcipher_tfm(tfm));
- }
- static inline void crypto_ablkcipher_set_flags(struct crypto_ablkcipher *tfm,
- u32 flags)
- {
- crypto_tfm_set_flags(crypto_ablkcipher_tfm(tfm), flags);
- }
- static inline void crypto_ablkcipher_clear_flags(struct crypto_ablkcipher *tfm,
- u32 flags)
- {
- crypto_tfm_clear_flags(crypto_ablkcipher_tfm(tfm), flags);
- }
- static inline int crypto_ablkcipher_setkey(struct crypto_ablkcipher *tfm,
- const u8 *key, unsigned int keylen)
- {
- struct ablkcipher_tfm *crt = crypto_ablkcipher_crt(tfm);
- return crt->setkey(crt->base, key, keylen);
- }
- static inline struct crypto_ablkcipher *crypto_ablkcipher_reqtfm(
- struct ablkcipher_request *req)
- {
- return __crypto_ablkcipher_cast(req->base.tfm);
- }
- static inline int crypto_ablkcipher_encrypt(struct ablkcipher_request *req)
- {
- struct ablkcipher_tfm *crt =
- crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req));
- return crt->encrypt(req);
- }
- static inline int crypto_ablkcipher_decrypt(struct ablkcipher_request *req)
- {
- struct ablkcipher_tfm *crt =
- crypto_ablkcipher_crt(crypto_ablkcipher_reqtfm(req));
- return crt->decrypt(req);
- }
- static inline unsigned int crypto_ablkcipher_reqsize(
- struct crypto_ablkcipher *tfm)
- {
- return crypto_ablkcipher_crt(tfm)->reqsize;
- }
- static inline void ablkcipher_request_set_tfm(
- struct ablkcipher_request *req, struct crypto_ablkcipher *tfm)
- {
- req->base.tfm = crypto_ablkcipher_tfm(crypto_ablkcipher_crt(tfm)->base);
- }
- static inline struct ablkcipher_request *ablkcipher_request_cast(
- struct crypto_async_request *req)
- {
- return container_of(req, struct ablkcipher_request, base);
- }
- static inline struct ablkcipher_request *ablkcipher_request_alloc(
- struct crypto_ablkcipher *tfm, gfp_t gfp)
- {
- struct ablkcipher_request *req;
- req = kmalloc(sizeof(struct ablkcipher_request) +
- crypto_ablkcipher_reqsize(tfm), gfp);
- if (likely(req))
- ablkcipher_request_set_tfm(req, tfm);
- return req;
- }
- static inline void ablkcipher_request_free(struct ablkcipher_request *req)
- {
- kzfree(req);
- }
- static inline void ablkcipher_request_set_callback(
- struct ablkcipher_request *req,
- u32 flags, crypto_completion_t compl, void *data)
- {
- req->base.complete = compl;
- req->base.data = data;
- req->base.flags = flags;
- }
- static inline void ablkcipher_request_set_crypt(
- struct ablkcipher_request *req,
- struct scatterlist *src, struct scatterlist *dst,
- unsigned int nbytes, void *iv)
- {
- req->src = src;
- req->dst = dst;
- req->nbytes = nbytes;
- req->info = iv;
- }
- static inline struct crypto_blkcipher *__crypto_blkcipher_cast(
- struct crypto_tfm *tfm)
- {
- return (struct crypto_blkcipher *)tfm;
- }
- static inline struct crypto_blkcipher *crypto_blkcipher_cast(
- struct crypto_tfm *tfm)
- {
- BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_BLKCIPHER);
- return __crypto_blkcipher_cast(tfm);
- }
- static inline struct crypto_blkcipher *crypto_alloc_blkcipher(
- const char *alg_name, u32 type, u32 mask)
- {
- type &= ~CRYPTO_ALG_TYPE_MASK;
- type |= CRYPTO_ALG_TYPE_BLKCIPHER;
- mask |= CRYPTO_ALG_TYPE_MASK;
- return __crypto_blkcipher_cast(crypto_alloc_base(alg_name, type, mask));
- }
- static inline struct crypto_tfm *crypto_blkcipher_tfm(
- struct crypto_blkcipher *tfm)
- {
- return &tfm->base;
- }
- static inline void crypto_free_blkcipher(struct crypto_blkcipher *tfm)
- {
- crypto_free_tfm(crypto_blkcipher_tfm(tfm));
- }
- static inline int crypto_has_blkcipher(const char *alg_name, u32 type, u32 mask)
- {
- type &= ~CRYPTO_ALG_TYPE_MASK;
- type |= CRYPTO_ALG_TYPE_BLKCIPHER;
- mask |= CRYPTO_ALG_TYPE_MASK;
- return crypto_has_alg(alg_name, type, mask);
- }
- static inline const char *crypto_blkcipher_name(struct crypto_blkcipher *tfm)
- {
- return crypto_tfm_alg_name(crypto_blkcipher_tfm(tfm));
- }
- static inline struct blkcipher_tfm *crypto_blkcipher_crt(
- struct crypto_blkcipher *tfm)
- {
- return &crypto_blkcipher_tfm(tfm)->crt_blkcipher;
- }
- static inline struct blkcipher_alg *crypto_blkcipher_alg(
- struct crypto_blkcipher *tfm)
- {
- return &crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher;
- }
- static inline unsigned int crypto_blkcipher_ivsize(struct crypto_blkcipher *tfm)
- {
- return crypto_blkcipher_alg(tfm)->ivsize;
- }
- static inline unsigned int crypto_blkcipher_blocksize(
- struct crypto_blkcipher *tfm)
- {
- return crypto_tfm_alg_blocksize(crypto_blkcipher_tfm(tfm));
- }
- static inline unsigned int crypto_blkcipher_alignmask(
- struct crypto_blkcipher *tfm)
- {
- return crypto_tfm_alg_alignmask(crypto_blkcipher_tfm(tfm));
- }
- static inline u32 crypto_blkcipher_get_flags(struct crypto_blkcipher *tfm)
- {
- return crypto_tfm_get_flags(crypto_blkcipher_tfm(tfm));
- }
- static inline void crypto_blkcipher_set_flags(struct crypto_blkcipher *tfm,
- u32 flags)
- {
- crypto_tfm_set_flags(crypto_blkcipher_tfm(tfm), flags);
- }
- static inline void crypto_blkcipher_clear_flags(struct crypto_blkcipher *tfm,
- u32 flags)
- {
- crypto_tfm_clear_flags(crypto_blkcipher_tfm(tfm), flags);
- }
- static inline int crypto_blkcipher_setkey(struct crypto_blkcipher *tfm,
- const u8 *key, unsigned int keylen)
- {
- return crypto_blkcipher_crt(tfm)->setkey(crypto_blkcipher_tfm(tfm),
- key, keylen);
- }
- static inline int crypto_blkcipher_encrypt(struct blkcipher_desc *desc,
- struct scatterlist *dst,
- struct scatterlist *src,
- unsigned int nbytes)
- {
- desc->info = crypto_blkcipher_crt(desc->tfm)->iv;
- return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes);
- }
- static inline int crypto_blkcipher_encrypt_iv(struct blkcipher_desc *desc,
- struct scatterlist *dst,
- struct scatterlist *src,
- unsigned int nbytes)
- {
- return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes);
- }
- static inline int crypto_blkcipher_decrypt(struct blkcipher_desc *desc,
- struct scatterlist *dst,
- struct scatterlist *src,
- unsigned int nbytes)
- {
- desc->info = crypto_blkcipher_crt(desc->tfm)->iv;
- return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes);
- }
- static inline int crypto_blkcipher_decrypt_iv(struct blkcipher_desc *desc,
- struct scatterlist *dst,
- struct scatterlist *src,
- unsigned int nbytes)
- {
- return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes);
- }
- static inline void crypto_blkcipher_set_iv(struct crypto_blkcipher *tfm,
- const u8 *src, unsigned int len)
- {
- memcpy(crypto_blkcipher_crt(tfm)->iv, src, len);
- }
- static inline void crypto_blkcipher_get_iv(struct crypto_blkcipher *tfm,
- u8 *dst, unsigned int len)
- {
- memcpy(dst, crypto_blkcipher_crt(tfm)->iv, len);
- }
- static inline struct crypto_cipher *__crypto_cipher_cast(struct crypto_tfm *tfm)
- {
- return (struct crypto_cipher *)tfm;
- }
- static inline struct crypto_cipher *crypto_cipher_cast(struct crypto_tfm *tfm)
- {
- BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER);
- return __crypto_cipher_cast(tfm);
- }
- static inline struct crypto_cipher *crypto_alloc_cipher(const char *alg_name,
- u32 type, u32 mask)
- {
- type &= ~CRYPTO_ALG_TYPE_MASK;
- type |= CRYPTO_ALG_TYPE_CIPHER;
- mask |= CRYPTO_ALG_TYPE_MASK;
- return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask));
- }
- static inline struct crypto_tfm *crypto_cipher_tfm(struct crypto_cipher *tfm)
- {
- return &tfm->base;
- }
- static inline void crypto_free_cipher(struct crypto_cipher *tfm)
- {
- crypto_free_tfm(crypto_cipher_tfm(tfm));
- }
- static inline int crypto_has_cipher(const char *alg_name, u32 type, u32 mask)
- {
- type &= ~CRYPTO_ALG_TYPE_MASK;
- type |= CRYPTO_ALG_TYPE_CIPHER;
- mask |= CRYPTO_ALG_TYPE_MASK;
- return crypto_has_alg(alg_name, type, mask);
- }
- static inline struct cipher_tfm *crypto_cipher_crt(struct crypto_cipher *tfm)
- {
- return &crypto_cipher_tfm(tfm)->crt_cipher;
- }
- static inline unsigned int crypto_cipher_blocksize(struct crypto_cipher *tfm)
- {
- return crypto_tfm_alg_blocksize(crypto_cipher_tfm(tfm));
- }
- static inline unsigned int crypto_cipher_alignmask(struct crypto_cipher *tfm)
- {
- return crypto_tfm_alg_alignmask(crypto_cipher_tfm(tfm));
- }
- static inline u32 crypto_cipher_get_flags(struct crypto_cipher *tfm)
- {
- return crypto_tfm_get_flags(crypto_cipher_tfm(tfm));
- }
- static inline void crypto_cipher_set_flags(struct crypto_cipher *tfm,
- u32 flags)
- {
- crypto_tfm_set_flags(crypto_cipher_tfm(tfm), flags);
- }
- static inline void crypto_cipher_clear_flags(struct crypto_cipher *tfm,
- u32 flags)
- {
- crypto_tfm_clear_flags(crypto_cipher_tfm(tfm), flags);
- }
- static inline int crypto_cipher_setkey(struct crypto_cipher *tfm,
- const u8 *key, unsigned int keylen)
- {
- return crypto_cipher_crt(tfm)->cit_setkey(crypto_cipher_tfm(tfm),
- key, keylen);
- }
- static inline void crypto_cipher_encrypt_one(struct crypto_cipher *tfm,
- u8 *dst, const u8 *src)
- {
- crypto_cipher_crt(tfm)->cit_encrypt_one(crypto_cipher_tfm(tfm),
- dst, src);
- }
- static inline void crypto_cipher_decrypt_one(struct crypto_cipher *tfm,
- u8 *dst, const u8 *src)
- {
- crypto_cipher_crt(tfm)->cit_decrypt_one(crypto_cipher_tfm(tfm),
- dst, src);
- }
- static inline struct crypto_comp *__crypto_comp_cast(struct crypto_tfm *tfm)
- {
- return (struct crypto_comp *)tfm;
- }
- static inline struct crypto_comp *crypto_comp_cast(struct crypto_tfm *tfm)
- {
- BUG_ON((crypto_tfm_alg_type(tfm) ^ CRYPTO_ALG_TYPE_COMPRESS) &
- CRYPTO_ALG_TYPE_MASK);
- return __crypto_comp_cast(tfm);
- }
- static inline struct crypto_comp *crypto_alloc_comp(const char *alg_name,
- u32 type, u32 mask)
- {
- type &= ~CRYPTO_ALG_TYPE_MASK;
- type |= CRYPTO_ALG_TYPE_COMPRESS;
- mask |= CRYPTO_ALG_TYPE_MASK;
- return __crypto_comp_cast(crypto_alloc_base(alg_name, type, mask));
- }
- static inline struct crypto_tfm *crypto_comp_tfm(struct crypto_comp *tfm)
- {
- return &tfm->base;
- }
- static inline void crypto_free_comp(struct crypto_comp *tfm)
- {
- crypto_free_tfm(crypto_comp_tfm(tfm));
- }
- static inline int crypto_has_comp(const char *alg_name, u32 type, u32 mask)
- {
- type &= ~CRYPTO_ALG_TYPE_MASK;
- type |= CRYPTO_ALG_TYPE_COMPRESS;
- mask |= CRYPTO_ALG_TYPE_MASK;
- return crypto_has_alg(alg_name, type, mask);
- }
- static inline const char *crypto_comp_name(struct crypto_comp *tfm)
- {
- return crypto_tfm_alg_name(crypto_comp_tfm(tfm));
- }
- static inline struct compress_tfm *crypto_comp_crt(struct crypto_comp *tfm)
- {
- return &crypto_comp_tfm(tfm)->crt_compress;
- }
- static inline int crypto_comp_compress(struct crypto_comp *tfm,
- const u8 *src, unsigned int slen,
- u8 *dst, unsigned int *dlen)
- {
- return crypto_comp_crt(tfm)->cot_compress(crypto_comp_tfm(tfm),
- src, slen, dst, dlen);
- }
- static inline int crypto_comp_decompress(struct crypto_comp *tfm,
- const u8 *src, unsigned int slen,
- u8 *dst, unsigned int *dlen)
- {
- return crypto_comp_crt(tfm)->cot_decompress(crypto_comp_tfm(tfm),
- src, slen, dst, dlen);
- }
- #endif
|