Home
last modified time | relevance | path

Searched refs:cached_parameters (Results 1 – 2 of 2) sorted by relevance

/src/crypto/openssl/crypto/evp/
H A Dpmeth_lib.c1499 ctx->cached_parameters.dist_id_name = OPENSSL_strdup(name); in evp_pkey_ctx_store_cached_data()
1500 if (ctx->cached_parameters.dist_id_name == NULL) in evp_pkey_ctx_store_cached_data()
1504 ctx->cached_parameters.dist_id = OPENSSL_memdup(data, data_len); in evp_pkey_ctx_store_cached_data()
1505 if (ctx->cached_parameters.dist_id == NULL) in evp_pkey_ctx_store_cached_data()
1508 ctx->cached_parameters.dist_id_set = 1; in evp_pkey_ctx_store_cached_data()
1509 ctx->cached_parameters.dist_id_len = data_len; in evp_pkey_ctx_store_cached_data()
1521 OPENSSL_free(ctx->cached_parameters.dist_id); in evp_pkey_ctx_free_cached_data()
1522 OPENSSL_free(ctx->cached_parameters.dist_id_name); in evp_pkey_ctx_free_cached_data()
1523 ctx->cached_parameters.dist_id = NULL; in evp_pkey_ctx_free_cached_data()
1524 ctx->cached_parameters.dist_id_name = NULL; in evp_pkey_ctx_free_cached_data()
[all …]
/src/crypto/openssl/include/crypto/
H A Devp.h108 } cached_parameters; member