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()
217 tfm = pask->private; in skcipher_check_key()
298 static void skcipher_release(void *private) in skcipher_release() argument
300 crypto_free_skcipher(private); in skcipher_release()
303 static int skcipher_setkey(void *private, const u8 *key, unsigned int keylen) in skcipher_setkey() argument
305 return crypto_skcipher_setkey(private, key, keylen); in skcipher_setkey()
311 struct af_alg_ctx *ctx = ask->private; in skcipher_sock_destruct()
314 struct crypto_skcipher *tfm = pask->private; in skcipher_sock_destruct()
322 static int skcipher_accept_parent_nokey(void *private, struct sock *sk) in skcipher_accept_parent_nokey() argument
326 struct crypto_skcipher *tfm = private; in skcipher_accept_parent_nokey()
346 ask->private = ctx; in skcipher_accept_parent_nokey()
353 static int skcipher_accept_parent(void *private, struct sock *sk) in skcipher_accept_parent() argument
355 struct crypto_skcipher *tfm = private; in skcipher_accept_parent()
360 return skcipher_accept_parent_nokey(private, sk); in skcipher_accept_parent()