Lines Matching refs:private
44 struct crypto_skcipher *tfm = pask->private; in skcipher_sendmsg()
57 struct af_alg_ctx *ctx = ask->private; in _skcipher_recvmsg()
58 struct crypto_skcipher *tfm = pask->private; in _skcipher_recvmsg()
223 tfm = pask->private; in skcipher_check_key()
309 static void skcipher_release(void *private) in skcipher_release() argument
311 crypto_free_skcipher(private); in skcipher_release()
314 static int skcipher_setkey(void *private, const u8 *key, unsigned int keylen) in skcipher_setkey() argument
316 return crypto_skcipher_setkey(private, key, keylen); in skcipher_setkey()
322 struct af_alg_ctx *ctx = ask->private; in skcipher_sock_destruct()
325 struct crypto_skcipher *tfm = pask->private; in skcipher_sock_destruct()
333 static int skcipher_accept_parent_nokey(void *private, struct sock *sk) in skcipher_accept_parent_nokey() argument
337 struct crypto_skcipher *tfm = private; in skcipher_accept_parent_nokey()
362 ask->private = ctx; in skcipher_accept_parent_nokey()
369 static int skcipher_accept_parent(void *private, struct sock *sk) in skcipher_accept_parent() argument
371 struct crypto_skcipher *tfm = private; in skcipher_accept_parent()
376 return skcipher_accept_parent_nokey(private, sk); in skcipher_accept_parent()