Lines Matching refs:cached_parameters
1494 ctx->cached_parameters.dist_id_name = OPENSSL_strdup(name); in evp_pkey_ctx_store_cached_data()
1495 if (ctx->cached_parameters.dist_id_name == NULL) in evp_pkey_ctx_store_cached_data()
1499 ctx->cached_parameters.dist_id = OPENSSL_memdup(data, data_len); in evp_pkey_ctx_store_cached_data()
1500 if (ctx->cached_parameters.dist_id == NULL) in evp_pkey_ctx_store_cached_data()
1503 ctx->cached_parameters.dist_id_set = 1; in evp_pkey_ctx_store_cached_data()
1504 ctx->cached_parameters.dist_id_len = data_len; in evp_pkey_ctx_store_cached_data()
1516 OPENSSL_free(ctx->cached_parameters.dist_id); in evp_pkey_ctx_free_cached_data()
1517 OPENSSL_free(ctx->cached_parameters.dist_id_name); in evp_pkey_ctx_free_cached_data()
1518 ctx->cached_parameters.dist_id = NULL; in evp_pkey_ctx_free_cached_data()
1519 ctx->cached_parameters.dist_id_name = NULL; in evp_pkey_ctx_free_cached_data()
1533 if (ret && ctx->cached_parameters.dist_id_set) { in evp_pkey_ctx_use_cached_data()
1534 const char *name = ctx->cached_parameters.dist_id_name; in evp_pkey_ctx_use_cached_data()
1535 const void *val = ctx->cached_parameters.dist_id; in evp_pkey_ctx_use_cached_data()
1536 size_t len = ctx->cached_parameters.dist_id_len; in evp_pkey_ctx_use_cached_data()