Lines Matching defs:cipher_parms
306 struct spu_cipher_parms cipher_parms;
324 cipher_parms.alg = ctx->cipher.alg;
325 cipher_parms.mode = ctx->cipher.mode;
326 cipher_parms.type = ctx->cipher_type;
327 cipher_parms.key_len = ctx->enckeylen;
328 cipher_parms.key_buf = ctx->enckey;
329 cipher_parms.iv_buf = local_iv_ctr;
330 cipher_parms.iv_len = rctx->iv_ctr_len;
403 &cipher_parms, chunksize);
679 struct spu_cipher_parms cipher_parms;
698 memset(&cipher_parms, 0, sizeof(cipher_parms));
716 cipher_parms.type = ctx->cipher_type;
773 hash_parms.type = (enum hash_type)cipher_parms.type;
820 &req_opts, &cipher_parms,
1274 struct spu_cipher_parms cipher_parms;
1300 cipher_parms.alg = ctx->cipher.alg;
1301 cipher_parms.mode = ctx->cipher.mode;
1302 cipher_parms.type = ctx->cipher_type;
1303 cipher_parms.key_buf = ctx->enckey;
1304 cipher_parms.key_len = ctx->enckeylen;
1305 cipher_parms.iv_buf = rctx->msg_buf.iv_ctr;
1306 cipher_parms.iv_len = rctx->iv_ctr_len;
1392 spu->spu_ccm_update_iv(digestsize, &cipher_parms, req->assoclen,
1434 &cipher_parms, &hash_parms,
1823 struct spu_cipher_parms cipher_parms;
1864 cipher_parms.iv_buf = NULL;
1865 cipher_parms.iv_len = crypto_skcipher_ivsize(cipher);
1866 flow_log("%s: iv_len %u\n", __func__, cipher_parms.iv_len);
1868 cipher_parms.alg = ctx->cipher.alg;
1869 cipher_parms.mode = ctx->cipher.mode;
1870 cipher_parms.type = ctx->cipher_type;
1871 cipher_parms.key_buf = ctx->enckey;
1872 cipher_parms.key_len = ctx->enckeylen;
1878 &cipher_parms);