Lines Matching refs:private
48 struct crypto_skcipher *tfm = pask->private; in skcipher_sendmsg()
61 struct af_alg_ctx *ctx = ask->private; in _skcipher_recvmsg()
62 struct crypto_skcipher *tfm = pask->private; in _skcipher_recvmsg()
227 tfm = pask->private; in skcipher_check_key()
313 static void skcipher_release(void *private) in skcipher_release() argument
315 crypto_free_skcipher(private); in skcipher_release()
318 static int skcipher_setkey(void *private, const u8 *key, unsigned int keylen) in skcipher_setkey() argument
320 return crypto_skcipher_setkey(private, key, keylen); in skcipher_setkey()
326 struct af_alg_ctx *ctx = ask->private; in skcipher_sock_destruct()
329 struct crypto_skcipher *tfm = pask->private; in skcipher_sock_destruct()
337 static int skcipher_accept_parent_nokey(void *private, struct sock *sk) in skcipher_accept_parent_nokey() argument
341 struct crypto_skcipher *tfm = private; in skcipher_accept_parent_nokey()
366 ask->private = ctx; in skcipher_accept_parent_nokey()
373 static int skcipher_accept_parent(void *private, struct sock *sk) in skcipher_accept_parent() argument
375 struct crypto_skcipher *tfm = private; in skcipher_accept_parent()
380 return skcipher_accept_parent_nokey(private, sk); in skcipher_accept_parent()