Home
last modified time | relevance | path

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

/titanic_44/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftEC.c58 soft_free_ecc_context(soft_ecc_ctx_t *ecc_ctx) in soft_free_ecc_context() argument
60 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() local
353 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 …]
/titanic_44/usr/src/uts/common/crypto/io/
H A Decc.c82 typedef struct ecc_ctx { struct