Lines Matching defs:skcipher
24 #include <crypto/internal/skcipher.h>
47 struct crypto_skcipher *skcipher;
179 crypto_skcipher_clear_flags(sctx->fallback.skcipher,
181 crypto_skcipher_set_flags(sctx->fallback.skcipher,
184 return crypto_skcipher_setkey(sctx->fallback.skcipher, key, len);
194 skcipher_request_set_tfm(subreq, sctx->fallback.skcipher);
258 sctx->fallback.skcipher = crypto_alloc_skcipher(name, 0,
261 if (IS_ERR(sctx->fallback.skcipher)) {
264 return PTR_ERR(sctx->fallback.skcipher);
268 crypto_skcipher_reqsize(sctx->fallback.skcipher));
276 crypto_free_skcipher(sctx->fallback.skcipher);