Searched refs:ecc_ctx (Results 1 – 2 of 2) sorted by relevance
58 soft_free_ecc_context(soft_ecc_ctx_t *ecc_ctx) in soft_free_ecc_context() argument60 if (ecc_ctx != NULL) { in soft_free_ecc_context()61 if (ecc_ctx->key != NULL) { in soft_free_ecc_context()62 soft_cleanup_object(ecc_ctx->key); in soft_free_ecc_context()63 free(ecc_ctx->key); in soft_free_ecc_context()66 soft_free_ecparams(&ecc_ctx->ecparams, B_FALSE); in soft_free_ecc_context()67 free(ecc_ctx); in soft_free_ecc_context()337 soft_ecc_ctx_t *ecc_ctx; in soft_ecc_sign_verify_init_common() local353 ecc_ctx = malloc(sizeof (soft_ecc_ctx_t)); in soft_ecc_sign_verify_init_common()354 if (ecc_ctx == NULL) { in soft_ecc_sign_verify_init_common()[all …]
82 typedef struct ecc_ctx { struct