Lines Matching refs:base
26 * @base: Underlying async request
37 struct crypto_async_request base;
45 struct crypto_tfm base;
49 struct crypto_skcipher base;
122 * @base: Definition of a generic crypto algorithm.
144 struct crypto_alg base;
193 return container_of(tfm, struct crypto_skcipher, base);
219 return &tfm->base;
235 crypto_free_skcipher(&tfm->base);
260 struct skcipher_alg, base);
285 return crypto_skcipher_ivsize(&tfm->base);
330 return crypto_skcipher_blocksize(&tfm->base);
359 return crypto_skcipher_get_flags(&tfm->base);
365 crypto_skcipher_set_flags(&tfm->base, flags);
371 crypto_skcipher_clear_flags(&tfm->base, flags);
396 return crypto_skcipher_setkey(&tfm->base, key, keylen);
423 return __crypto_skcipher_cast(req->base.tfm);
431 return container_of(tfm, struct crypto_sync_skcipher, base);
493 req->base.tfm = crypto_skcipher_tfm(tfm);
499 skcipher_request_set_tfm(req, &tfm->base);
505 return container_of(req, struct skcipher_request, base);
579 req->base.complete = compl;
580 req->base.data = data;
581 req->base.flags = flags;