Lines Matching refs:tfm

160 	struct crypto_tfm *tfm;  member
205 struct crypto_blkcipher *tfm; member
211 struct crypto_tfm *tfm; member
212 void (*crfn)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
219 struct crypto_hash *tfm; member
282 int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key,
323 int (*setkey)(struct crypto_aead *tfm, const u8 *key,
325 int (*setauthsize)(struct crypto_aead *tfm, unsigned int authsize);
350 int (*setkey)(struct crypto_tfm *tfm, const u8 *key,
416 int (*cia_setkey)(struct crypto_tfm *tfm, const u8 *key,
418 void (*cia_encrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
419 void (*cia_decrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
423 int (*coa_compress)(struct crypto_tfm *tfm, const u8 *src,
425 int (*coa_decompress)(struct crypto_tfm *tfm, const u8 *src,
449 int (*rng_make_random)(struct crypto_rng *tfm, u8 *rdata,
451 int (*rng_reset)(struct crypto_rng *tfm, u8 *seed, unsigned int slen);
565 int (*cra_init)(struct crypto_tfm *tfm);
566 void (*cra_exit)(struct crypto_tfm *tfm);
592 int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key,
606 int (*setkey)(struct crypto_aead *tfm, const u8 *key,
622 int (*setkey)(struct crypto_tfm *tfm, const u8 *key,
631 int (*cit_setkey)(struct crypto_tfm *tfm,
633 void (*cit_encrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
634 void (*cit_decrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
644 int (*setkey)(struct crypto_hash *tfm, const u8 *key,
650 int (*cot_compress)(struct crypto_tfm *tfm,
653 int (*cot_decompress)(struct crypto_tfm *tfm,
659 int (*rng_gen_random)(struct crypto_rng *tfm, u8 *rdata,
661 int (*rng_reset)(struct crypto_rng *tfm, u8 *seed, unsigned int slen);
686 void (*exit)(struct crypto_tfm *tfm);
752 void crypto_destroy_tfm(void *mem, struct crypto_tfm *tfm);
754 static inline void crypto_free_tfm(struct crypto_tfm *tfm) in crypto_free_tfm() argument
756 return crypto_destroy_tfm(tfm, tfm); in crypto_free_tfm()
764 static inline const char *crypto_tfm_alg_name(struct crypto_tfm *tfm) in crypto_tfm_alg_name() argument
766 return tfm->__crt_alg->cra_name; in crypto_tfm_alg_name()
769 static inline const char *crypto_tfm_alg_driver_name(struct crypto_tfm *tfm) in crypto_tfm_alg_driver_name() argument
771 return tfm->__crt_alg->cra_driver_name; in crypto_tfm_alg_driver_name()
774 static inline int crypto_tfm_alg_priority(struct crypto_tfm *tfm) in crypto_tfm_alg_priority() argument
776 return tfm->__crt_alg->cra_priority; in crypto_tfm_alg_priority()
779 static inline u32 crypto_tfm_alg_type(struct crypto_tfm *tfm) in crypto_tfm_alg_type() argument
781 return tfm->__crt_alg->cra_flags & CRYPTO_ALG_TYPE_MASK; in crypto_tfm_alg_type()
784 static inline unsigned int crypto_tfm_alg_blocksize(struct crypto_tfm *tfm) in crypto_tfm_alg_blocksize() argument
786 return tfm->__crt_alg->cra_blocksize; in crypto_tfm_alg_blocksize()
789 static inline unsigned int crypto_tfm_alg_alignmask(struct crypto_tfm *tfm) in crypto_tfm_alg_alignmask() argument
791 return tfm->__crt_alg->cra_alignmask; in crypto_tfm_alg_alignmask()
794 static inline u32 crypto_tfm_get_flags(struct crypto_tfm *tfm) in crypto_tfm_get_flags() argument
796 return tfm->crt_flags; in crypto_tfm_get_flags()
799 static inline void crypto_tfm_set_flags(struct crypto_tfm *tfm, u32 flags) in crypto_tfm_set_flags() argument
801 tfm->crt_flags |= flags; in crypto_tfm_set_flags()
804 static inline void crypto_tfm_clear_flags(struct crypto_tfm *tfm, u32 flags) in crypto_tfm_clear_flags() argument
806 tfm->crt_flags &= ~flags; in crypto_tfm_clear_flags()
809 static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm) in crypto_tfm_ctx() argument
811 return tfm->__crt_ctx; in crypto_tfm_ctx()
816 struct crypto_tfm *tfm; in crypto_tfm_ctx_alignment() local
817 return __alignof__(tfm->__crt_ctx); in crypto_tfm_ctx_alignment()
824 struct crypto_tfm *tfm) in __crypto_ablkcipher_cast() argument
826 return (struct crypto_ablkcipher *)tfm; in __crypto_ablkcipher_cast()
891 struct crypto_ablkcipher *tfm) in crypto_ablkcipher_tfm() argument
893 return &tfm->base; in crypto_ablkcipher_tfm()
900 static inline void crypto_free_ablkcipher(struct crypto_ablkcipher *tfm) in crypto_free_ablkcipher() argument
902 crypto_free_tfm(crypto_ablkcipher_tfm(tfm)); in crypto_free_ablkcipher()
923 struct crypto_ablkcipher *tfm) in crypto_ablkcipher_crt() argument
925 return &crypto_ablkcipher_tfm(tfm)->crt_ablkcipher; in crypto_ablkcipher_crt()
938 struct crypto_ablkcipher *tfm) in crypto_ablkcipher_ivsize() argument
940 return crypto_ablkcipher_crt(tfm)->ivsize; in crypto_ablkcipher_ivsize()
954 struct crypto_ablkcipher *tfm) in crypto_ablkcipher_blocksize() argument
956 return crypto_tfm_alg_blocksize(crypto_ablkcipher_tfm(tfm)); in crypto_ablkcipher_blocksize()
960 struct crypto_ablkcipher *tfm) in crypto_ablkcipher_alignmask() argument
962 return crypto_tfm_alg_alignmask(crypto_ablkcipher_tfm(tfm)); in crypto_ablkcipher_alignmask()
965 static inline u32 crypto_ablkcipher_get_flags(struct crypto_ablkcipher *tfm) in crypto_ablkcipher_get_flags() argument
967 return crypto_tfm_get_flags(crypto_ablkcipher_tfm(tfm)); in crypto_ablkcipher_get_flags()
970 static inline void crypto_ablkcipher_set_flags(struct crypto_ablkcipher *tfm, in crypto_ablkcipher_set_flags() argument
973 crypto_tfm_set_flags(crypto_ablkcipher_tfm(tfm), flags); in crypto_ablkcipher_set_flags()
976 static inline void crypto_ablkcipher_clear_flags(struct crypto_ablkcipher *tfm, in crypto_ablkcipher_clear_flags() argument
979 crypto_tfm_clear_flags(crypto_ablkcipher_tfm(tfm), flags); in crypto_ablkcipher_clear_flags()
998 static inline int crypto_ablkcipher_setkey(struct crypto_ablkcipher *tfm, in crypto_ablkcipher_setkey() argument
1001 struct ablkcipher_tfm *crt = crypto_ablkcipher_crt(tfm); in crypto_ablkcipher_setkey()
1018 return __crypto_ablkcipher_cast(req->base.tfm); in crypto_ablkcipher_reqtfm()
1075 struct crypto_ablkcipher *tfm) in crypto_ablkcipher_reqsize() argument
1077 return crypto_ablkcipher_crt(tfm)->reqsize; in crypto_ablkcipher_reqsize()
1089 struct ablkcipher_request *req, struct crypto_ablkcipher *tfm) in ablkcipher_request_set_tfm() argument
1091 req->base.tfm = crypto_ablkcipher_tfm(crypto_ablkcipher_crt(tfm)->base); in ablkcipher_request_set_tfm()
1113 struct crypto_ablkcipher *tfm, gfp_t gfp) in ablkcipher_request_alloc() argument
1118 crypto_ablkcipher_reqsize(tfm), gfp); in ablkcipher_request_alloc()
1121 ablkcipher_request_set_tfm(req, tfm); in ablkcipher_request_alloc()
1226 static inline struct crypto_aead *__crypto_aead_cast(struct crypto_tfm *tfm) in __crypto_aead_cast() argument
1228 return (struct crypto_aead *)tfm; in __crypto_aead_cast()
1247 static inline struct crypto_tfm *crypto_aead_tfm(struct crypto_aead *tfm) in crypto_aead_tfm() argument
1249 return &tfm->base; in crypto_aead_tfm()
1256 static inline void crypto_free_aead(struct crypto_aead *tfm) in crypto_free_aead() argument
1258 crypto_free_tfm(crypto_aead_tfm(tfm)); in crypto_free_aead()
1261 static inline struct aead_tfm *crypto_aead_crt(struct crypto_aead *tfm) in crypto_aead_crt() argument
1263 return &crypto_aead_tfm(tfm)->crt_aead; in crypto_aead_crt()
1275 static inline unsigned int crypto_aead_ivsize(struct crypto_aead *tfm) in crypto_aead_ivsize() argument
1277 return crypto_aead_crt(tfm)->ivsize; in crypto_aead_ivsize()
1292 static inline unsigned int crypto_aead_authsize(struct crypto_aead *tfm) in crypto_aead_authsize() argument
1294 return crypto_aead_crt(tfm)->authsize; in crypto_aead_authsize()
1307 static inline unsigned int crypto_aead_blocksize(struct crypto_aead *tfm) in crypto_aead_blocksize() argument
1309 return crypto_tfm_alg_blocksize(crypto_aead_tfm(tfm)); in crypto_aead_blocksize()
1312 static inline unsigned int crypto_aead_alignmask(struct crypto_aead *tfm) in crypto_aead_alignmask() argument
1314 return crypto_tfm_alg_alignmask(crypto_aead_tfm(tfm)); in crypto_aead_alignmask()
1317 static inline u32 crypto_aead_get_flags(struct crypto_aead *tfm) in crypto_aead_get_flags() argument
1319 return crypto_tfm_get_flags(crypto_aead_tfm(tfm)); in crypto_aead_get_flags()
1322 static inline void crypto_aead_set_flags(struct crypto_aead *tfm, u32 flags) in crypto_aead_set_flags() argument
1324 crypto_tfm_set_flags(crypto_aead_tfm(tfm), flags); in crypto_aead_set_flags()
1327 static inline void crypto_aead_clear_flags(struct crypto_aead *tfm, u32 flags) in crypto_aead_clear_flags() argument
1329 crypto_tfm_clear_flags(crypto_aead_tfm(tfm), flags); in crypto_aead_clear_flags()
1348 static inline int crypto_aead_setkey(struct crypto_aead *tfm, const u8 *key, in crypto_aead_setkey() argument
1351 struct aead_tfm *crt = crypto_aead_crt(tfm); in crypto_aead_setkey()
1366 int crypto_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize);
1370 return __crypto_aead_cast(req->base.tfm); in crypto_aead_reqtfm()
1444 static inline unsigned int crypto_aead_reqsize(struct crypto_aead *tfm) in crypto_aead_reqsize() argument
1446 return crypto_aead_crt(tfm)->reqsize; in crypto_aead_reqsize()
1458 struct crypto_aead *tfm) in aead_request_set_tfm() argument
1460 req->base.tfm = crypto_aead_tfm(crypto_aead_crt(tfm)->base); in aead_request_set_tfm()
1475 static inline struct aead_request *aead_request_alloc(struct crypto_aead *tfm, in aead_request_alloc() argument
1480 req = kmalloc(sizeof(*req) + crypto_aead_reqsize(tfm), gfp); in aead_request_alloc()
1483 aead_request_set_tfm(req, tfm); in aead_request_alloc()
1621 struct crypto_tfm *tfm) in __crypto_blkcipher_cast() argument
1623 return (struct crypto_blkcipher *)tfm; in __crypto_blkcipher_cast()
1627 struct crypto_tfm *tfm) in crypto_blkcipher_cast() argument
1629 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_BLKCIPHER); in crypto_blkcipher_cast()
1630 return __crypto_blkcipher_cast(tfm); in crypto_blkcipher_cast()
1658 struct crypto_blkcipher *tfm) in crypto_blkcipher_tfm() argument
1660 return &tfm->base; in crypto_blkcipher_tfm()
1667 static inline void crypto_free_blkcipher(struct crypto_blkcipher *tfm) in crypto_free_blkcipher() argument
1669 crypto_free_tfm(crypto_blkcipher_tfm(tfm)); in crypto_free_blkcipher()
1697 static inline const char *crypto_blkcipher_name(struct crypto_blkcipher *tfm) in crypto_blkcipher_name() argument
1699 return crypto_tfm_alg_name(crypto_blkcipher_tfm(tfm)); in crypto_blkcipher_name()
1703 struct crypto_blkcipher *tfm) in crypto_blkcipher_crt() argument
1705 return &crypto_blkcipher_tfm(tfm)->crt_blkcipher; in crypto_blkcipher_crt()
1709 struct crypto_blkcipher *tfm) in crypto_blkcipher_alg() argument
1711 return &crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher; in crypto_blkcipher_alg()
1723 static inline unsigned int crypto_blkcipher_ivsize(struct crypto_blkcipher *tfm) in crypto_blkcipher_ivsize() argument
1725 return crypto_blkcipher_alg(tfm)->ivsize; in crypto_blkcipher_ivsize()
1739 struct crypto_blkcipher *tfm) in crypto_blkcipher_blocksize() argument
1741 return crypto_tfm_alg_blocksize(crypto_blkcipher_tfm(tfm)); in crypto_blkcipher_blocksize()
1745 struct crypto_blkcipher *tfm) in crypto_blkcipher_alignmask() argument
1747 return crypto_tfm_alg_alignmask(crypto_blkcipher_tfm(tfm)); in crypto_blkcipher_alignmask()
1750 static inline u32 crypto_blkcipher_get_flags(struct crypto_blkcipher *tfm) in crypto_blkcipher_get_flags() argument
1752 return crypto_tfm_get_flags(crypto_blkcipher_tfm(tfm)); in crypto_blkcipher_get_flags()
1755 static inline void crypto_blkcipher_set_flags(struct crypto_blkcipher *tfm, in crypto_blkcipher_set_flags() argument
1758 crypto_tfm_set_flags(crypto_blkcipher_tfm(tfm), flags); in crypto_blkcipher_set_flags()
1761 static inline void crypto_blkcipher_clear_flags(struct crypto_blkcipher *tfm, in crypto_blkcipher_clear_flags() argument
1764 crypto_tfm_clear_flags(crypto_blkcipher_tfm(tfm), flags); in crypto_blkcipher_clear_flags()
1783 static inline int crypto_blkcipher_setkey(struct crypto_blkcipher *tfm, in crypto_blkcipher_setkey() argument
1786 return crypto_blkcipher_crt(tfm)->setkey(crypto_blkcipher_tfm(tfm), in crypto_blkcipher_setkey()
1813 desc->info = crypto_blkcipher_crt(desc->tfm)->iv; in crypto_blkcipher_encrypt()
1814 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes); in crypto_blkcipher_encrypt()
1841 return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes); in crypto_blkcipher_encrypt_iv()
1866 desc->info = crypto_blkcipher_crt(desc->tfm)->iv; in crypto_blkcipher_decrypt()
1867 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes); in crypto_blkcipher_decrypt()
1891 return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes); in crypto_blkcipher_decrypt_iv()
1903 static inline void crypto_blkcipher_set_iv(struct crypto_blkcipher *tfm, in crypto_blkcipher_set_iv() argument
1906 memcpy(crypto_blkcipher_crt(tfm)->iv, src, len); in crypto_blkcipher_set_iv()
1919 static inline void crypto_blkcipher_get_iv(struct crypto_blkcipher *tfm, in crypto_blkcipher_get_iv() argument
1922 memcpy(dst, crypto_blkcipher_crt(tfm)->iv, len); in crypto_blkcipher_get_iv()
1942 static inline struct crypto_cipher *__crypto_cipher_cast(struct crypto_tfm *tfm) in __crypto_cipher_cast() argument
1944 return (struct crypto_cipher *)tfm; in __crypto_cipher_cast()
1947 static inline struct crypto_cipher *crypto_cipher_cast(struct crypto_tfm *tfm) in crypto_cipher_cast() argument
1949 BUG_ON(crypto_tfm_alg_type(tfm) != CRYPTO_ALG_TYPE_CIPHER); in crypto_cipher_cast()
1950 return __crypto_cipher_cast(tfm); in crypto_cipher_cast()
1977 static inline struct crypto_tfm *crypto_cipher_tfm(struct crypto_cipher *tfm) in crypto_cipher_tfm() argument
1979 return &tfm->base; in crypto_cipher_tfm()
1986 static inline void crypto_free_cipher(struct crypto_cipher *tfm) in crypto_free_cipher() argument
1988 crypto_free_tfm(crypto_cipher_tfm(tfm)); in crypto_free_cipher()
2010 static inline struct cipher_tfm *crypto_cipher_crt(struct crypto_cipher *tfm) in crypto_cipher_crt() argument
2012 return &crypto_cipher_tfm(tfm)->crt_cipher; in crypto_cipher_crt()
2025 static inline unsigned int crypto_cipher_blocksize(struct crypto_cipher *tfm) in crypto_cipher_blocksize() argument
2027 return crypto_tfm_alg_blocksize(crypto_cipher_tfm(tfm)); in crypto_cipher_blocksize()
2030 static inline unsigned int crypto_cipher_alignmask(struct crypto_cipher *tfm) in crypto_cipher_alignmask() argument
2032 return crypto_tfm_alg_alignmask(crypto_cipher_tfm(tfm)); in crypto_cipher_alignmask()
2035 static inline u32 crypto_cipher_get_flags(struct crypto_cipher *tfm) in crypto_cipher_get_flags() argument
2037 return crypto_tfm_get_flags(crypto_cipher_tfm(tfm)); in crypto_cipher_get_flags()
2040 static inline void crypto_cipher_set_flags(struct crypto_cipher *tfm, in crypto_cipher_set_flags() argument
2043 crypto_tfm_set_flags(crypto_cipher_tfm(tfm), flags); in crypto_cipher_set_flags()
2046 static inline void crypto_cipher_clear_flags(struct crypto_cipher *tfm, in crypto_cipher_clear_flags() argument
2049 crypto_tfm_clear_flags(crypto_cipher_tfm(tfm), flags); in crypto_cipher_clear_flags()
2068 static inline int crypto_cipher_setkey(struct crypto_cipher *tfm, in crypto_cipher_setkey() argument
2071 return crypto_cipher_crt(tfm)->cit_setkey(crypto_cipher_tfm(tfm), in crypto_cipher_setkey()
2084 static inline void crypto_cipher_encrypt_one(struct crypto_cipher *tfm, in crypto_cipher_encrypt_one() argument
2087 crypto_cipher_crt(tfm)->cit_encrypt_one(crypto_cipher_tfm(tfm), in crypto_cipher_encrypt_one()
2100 static inline void crypto_cipher_decrypt_one(struct crypto_cipher *tfm, in crypto_cipher_decrypt_one() argument
2103 crypto_cipher_crt(tfm)->cit_decrypt_one(crypto_cipher_tfm(tfm), in crypto_cipher_decrypt_one()
2114 static inline struct crypto_hash *__crypto_hash_cast(struct crypto_tfm *tfm) in __crypto_hash_cast() argument
2116 return (struct crypto_hash *)tfm; in __crypto_hash_cast()
2119 static inline struct crypto_hash *crypto_hash_cast(struct crypto_tfm *tfm) in crypto_hash_cast() argument
2121 BUG_ON((crypto_tfm_alg_type(tfm) ^ CRYPTO_ALG_TYPE_HASH) & in crypto_hash_cast()
2123 return __crypto_hash_cast(tfm); in crypto_hash_cast()
2151 static inline struct crypto_tfm *crypto_hash_tfm(struct crypto_hash *tfm) in crypto_hash_tfm() argument
2153 return &tfm->base; in crypto_hash_tfm()
2160 static inline void crypto_free_hash(struct crypto_hash *tfm) in crypto_free_hash() argument
2162 crypto_free_tfm(crypto_hash_tfm(tfm)); in crypto_free_hash()
2185 static inline struct hash_tfm *crypto_hash_crt(struct crypto_hash *tfm) in crypto_hash_crt() argument
2187 return &crypto_hash_tfm(tfm)->crt_hash; in crypto_hash_crt()
2199 static inline unsigned int crypto_hash_blocksize(struct crypto_hash *tfm) in crypto_hash_blocksize() argument
2201 return crypto_tfm_alg_blocksize(crypto_hash_tfm(tfm)); in crypto_hash_blocksize()
2204 static inline unsigned int crypto_hash_alignmask(struct crypto_hash *tfm) in crypto_hash_alignmask() argument
2206 return crypto_tfm_alg_alignmask(crypto_hash_tfm(tfm)); in crypto_hash_alignmask()
2218 static inline unsigned int crypto_hash_digestsize(struct crypto_hash *tfm) in crypto_hash_digestsize() argument
2220 return crypto_hash_crt(tfm)->digestsize; in crypto_hash_digestsize()
2223 static inline u32 crypto_hash_get_flags(struct crypto_hash *tfm) in crypto_hash_get_flags() argument
2225 return crypto_tfm_get_flags(crypto_hash_tfm(tfm)); in crypto_hash_get_flags()
2228 static inline void crypto_hash_set_flags(struct crypto_hash *tfm, u32 flags) in crypto_hash_set_flags() argument
2230 crypto_tfm_set_flags(crypto_hash_tfm(tfm), flags); in crypto_hash_set_flags()
2233 static inline void crypto_hash_clear_flags(struct crypto_hash *tfm, u32 flags) in crypto_hash_clear_flags() argument
2235 crypto_tfm_clear_flags(crypto_hash_tfm(tfm), flags); in crypto_hash_clear_flags()
2253 return crypto_hash_crt(desc->tfm)->init(desc); in crypto_hash_init()
2274 return crypto_hash_crt(desc->tfm)->update(desc, sg, nbytes); in crypto_hash_update()
2293 return crypto_hash_crt(desc->tfm)->final(desc, out); in crypto_hash_final()
2314 return crypto_hash_crt(desc->tfm)->digest(desc, sg, nbytes, out); in crypto_hash_digest()
2334 static inline struct crypto_comp *__crypto_comp_cast(struct crypto_tfm *tfm) in __crypto_comp_cast() argument
2336 return (struct crypto_comp *)tfm; in __crypto_comp_cast()
2339 static inline struct crypto_comp *crypto_comp_cast(struct crypto_tfm *tfm) in crypto_comp_cast() argument
2341 BUG_ON((crypto_tfm_alg_type(tfm) ^ CRYPTO_ALG_TYPE_COMPRESS) & in crypto_comp_cast()
2343 return __crypto_comp_cast(tfm); in crypto_comp_cast()
2356 static inline struct crypto_tfm *crypto_comp_tfm(struct crypto_comp *tfm) in crypto_comp_tfm() argument
2358 return &tfm->base; in crypto_comp_tfm()
2361 static inline void crypto_free_comp(struct crypto_comp *tfm) in crypto_free_comp() argument
2363 crypto_free_tfm(crypto_comp_tfm(tfm)); in crypto_free_comp()
2375 static inline const char *crypto_comp_name(struct crypto_comp *tfm) in crypto_comp_name() argument
2377 return crypto_tfm_alg_name(crypto_comp_tfm(tfm)); in crypto_comp_name()
2380 static inline struct compress_tfm *crypto_comp_crt(struct crypto_comp *tfm) in crypto_comp_crt() argument
2382 return &crypto_comp_tfm(tfm)->crt_compress; in crypto_comp_crt()
2385 static inline int crypto_comp_compress(struct crypto_comp *tfm, in crypto_comp_compress() argument
2389 return crypto_comp_crt(tfm)->cot_compress(crypto_comp_tfm(tfm), in crypto_comp_compress()
2393 static inline int crypto_comp_decompress(struct crypto_comp *tfm, in crypto_comp_decompress() argument
2397 return crypto_comp_crt(tfm)->cot_decompress(crypto_comp_tfm(tfm), in crypto_comp_decompress()