Lines Matching refs:private
44 struct crypto_skcipher *tfm = pask->private; in skcipher_sendmsg()
63 ctx = ask->private; in algif_skcipher_export()
66 tfm = pask->private; in algif_skcipher_export()
103 struct af_alg_ctx *ctx = ask->private; in _skcipher_recvmsg()
104 struct crypto_skcipher *tfm = pask->private; in _skcipher_recvmsg()
280 tfm = pask->private; in skcipher_check_key()
348 static void skcipher_release(void *private) in skcipher_release() argument
350 crypto_free_skcipher(private); in skcipher_release()
353 static int skcipher_setkey(void *private, const u8 *key, unsigned int keylen) in skcipher_setkey() argument
355 return crypto_skcipher_setkey(private, key, keylen); in skcipher_setkey()
361 struct af_alg_ctx *ctx = ask->private; in skcipher_sock_destruct()
364 struct crypto_skcipher *tfm = pask->private; in skcipher_sock_destruct()
374 static int skcipher_accept_parent_nokey(void *private, struct sock *sk) in skcipher_accept_parent_nokey() argument
378 struct crypto_skcipher *tfm = private; in skcipher_accept_parent_nokey()
398 ask->private = ctx; in skcipher_accept_parent_nokey()
405 static int skcipher_accept_parent(void *private, struct sock *sk) in skcipher_accept_parent() argument
407 struct crypto_skcipher *tfm = private; in skcipher_accept_parent()
412 return skcipher_accept_parent_nokey(private, sk); in skcipher_accept_parent()