Lines Matching defs:req
20 static int crypto_pcbc_encrypt_segment(struct skcipher_request *req,
42 static int crypto_pcbc_encrypt_inplace(struct skcipher_request *req,
64 static int crypto_pcbc_encrypt(struct skcipher_request *req)
66 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
72 err = skcipher_walk_virt(&walk, req, false);
76 nbytes = crypto_pcbc_encrypt_inplace(req, &walk,
79 nbytes = crypto_pcbc_encrypt_segment(req, &walk,
87 static int crypto_pcbc_decrypt_segment(struct skcipher_request *req,
109 static int crypto_pcbc_decrypt_inplace(struct skcipher_request *req,
131 static int crypto_pcbc_decrypt(struct skcipher_request *req)
133 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
139 err = skcipher_walk_virt(&walk, req, false);
143 nbytes = crypto_pcbc_decrypt_inplace(req, &walk,
146 nbytes = crypto_pcbc_decrypt_segment(req, &walk,