Lines Matching defs:private
44 struct crypto_skcipher *tfm = pask->private;
57 struct af_alg_ctx *ctx = ask->private;
58 struct crypto_skcipher *tfm = pask->private;
216 tfm = pask->private;
284 static void skcipher_release(void *private)
286 crypto_free_skcipher(private);
289 static int skcipher_setkey(void *private, const u8 *key, unsigned int keylen)
291 return crypto_skcipher_setkey(private, key, keylen);
297 struct af_alg_ctx *ctx = ask->private;
300 struct crypto_skcipher *tfm = pask->private;
308 static int skcipher_accept_parent_nokey(void *private, struct sock *sk)
312 struct crypto_skcipher *tfm = private;
332 ask->private = ctx;
339 static int skcipher_accept_parent(void *private, struct sock *sk)
341 struct crypto_skcipher *tfm = private;
346 return skcipher_accept_parent_nokey(private, sk);