Home
last modified time | relevance | path

Searched refs:cipher_req (Results 1 – 2 of 2) sorted by relevance

/net/rxrpc/
Drxkad.c153 struct skcipher_request *cipher_req = call->cipher_req; in rxkad_get_call_crypto() local
155 if (!cipher_req) { in rxkad_get_call_crypto()
156 cipher_req = skcipher_request_alloc(tfm, GFP_NOFS); in rxkad_get_call_crypto()
157 if (!cipher_req) in rxkad_get_call_crypto()
159 call->cipher_req = cipher_req; in rxkad_get_call_crypto()
162 return cipher_req; in rxkad_get_call_crypto()
170 if (call->cipher_req) in rxkad_free_call_crypto()
171 skcipher_request_free(call->cipher_req); in rxkad_free_call_crypto()
172 call->cipher_req = NULL; in rxkad_free_call_crypto()
Dar-internal.h576 struct skcipher_request *cipher_req; /* Packet cipher request buffer */ member