Lines Matching defs:cipher_parms
305 struct spu_cipher_parms cipher_parms;
323 cipher_parms.alg = ctx->cipher.alg;
324 cipher_parms.mode = ctx->cipher.mode;
325 cipher_parms.type = ctx->cipher_type;
326 cipher_parms.key_len = ctx->enckeylen;
327 cipher_parms.key_buf = ctx->enckey;
328 cipher_parms.iv_buf = local_iv_ctr;
329 cipher_parms.iv_len = rctx->iv_ctr_len;
402 &cipher_parms, chunksize);
676 struct spu_cipher_parms cipher_parms;
695 memset(&cipher_parms, 0, sizeof(cipher_parms));
713 cipher_parms.type = ctx->cipher_type;
770 hash_parms.type = (enum hash_type)cipher_parms.type;
817 &req_opts, &cipher_parms,
1269 struct spu_cipher_parms cipher_parms;
1295 cipher_parms.alg = ctx->cipher.alg;
1296 cipher_parms.mode = ctx->cipher.mode;
1297 cipher_parms.type = ctx->cipher_type;
1298 cipher_parms.key_buf = ctx->enckey;
1299 cipher_parms.key_len = ctx->enckeylen;
1300 cipher_parms.iv_buf = rctx->msg_buf.iv_ctr;
1301 cipher_parms.iv_len = rctx->iv_ctr_len;
1387 spu->spu_ccm_update_iv(digestsize, &cipher_parms, req->assoclen,
1429 &cipher_parms, &hash_parms,
1818 struct spu_cipher_parms cipher_parms;
1859 cipher_parms.iv_buf = NULL;
1860 cipher_parms.iv_len = crypto_skcipher_ivsize(cipher);
1861 flow_log("%s: iv_len %u\n", __func__, cipher_parms.iv_len);
1863 cipher_parms.alg = ctx->cipher.alg;
1864 cipher_parms.mode = ctx->cipher.mode;
1865 cipher_parms.type = ctx->cipher_type;
1866 cipher_parms.key_buf = ctx->enckey;
1867 cipher_parms.key_len = ctx->enckeylen;
1873 &cipher_parms);