Lines Matching refs:base
21 * @base: Underlying async request
32 struct crypto_async_request base;
40 struct crypto_tfm base;
44 struct crypto_skcipher base;
100 * @base: Definition of a generic crypto algorithm.
118 struct crypto_alg base;
167 return container_of(tfm, struct crypto_skcipher, base);
193 return &tfm->base;
209 crypto_free_skcipher(&tfm->base);
234 struct skcipher_alg, base);
259 return crypto_skcipher_ivsize(&tfm->base);
304 return crypto_skcipher_blocksize(&tfm->base);
333 return crypto_skcipher_get_flags(&tfm->base);
339 crypto_skcipher_set_flags(&tfm->base, flags);
345 crypto_skcipher_clear_flags(&tfm->base, flags);
370 return crypto_skcipher_setkey(&tfm->base, key, keylen);
397 return __crypto_skcipher_cast(req->base.tfm);
405 return container_of(tfm, struct crypto_sync_skcipher, base);
467 req->base.tfm = crypto_skcipher_tfm(tfm);
473 skcipher_request_set_tfm(req, &tfm->base);
479 return container_of(req, struct skcipher_request, base);
553 req->base.complete = compl;
554 req->base.data = data;
555 req->base.flags = flags;