Searched refs:rsa_ctx (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftRSA.c194 soft_rsa_ctx_t *rsa_ctx; local
198 rsa_ctx = calloc(1, sizeof (soft_rsa_ctx_t));
199 if (rsa_ctx == NULL) {
216 free(rsa_ctx);
222 rsa_ctx->key = tmp_key;
227 session_p->encrypt.context = rsa_ctx;
231 session_p->decrypt.context = rsa_ctx;
245 soft_rsa_ctx_t *rsa_ctx = session_p->encrypt.context; local
246 soft_object_t *key = rsa_ctx->key;
335 soft_rsa_ctx_t *rsa_ctx local
420 soft_rsa_ctx_t *rsa_ctx; local
529 soft_rsa_ctx_t *rsa_ctx = session_p->sign.context; local
646 soft_rsa_ctx_t *rsa_ctx = session_p->verify.context; local
982 soft_rsa_ctx_t *rsa_ctx = session_p->sign.context; local
1097 soft_rsa_ctx_t *rsa_ctx = session_p->verify.context; local
1180 soft_rsa_ctx_t *rsa_ctx = session_p->verify.context; local
[all...]
H A DsoftSignUtil.c471 soft_rsa_ctx_t *rsa_ctx = local
474 if (rsa_ctx != NULL && rsa_ctx->key != NULL) {
475 soft_cleanup_object(rsa_ctx->key);
476 free(rsa_ctx->key);
H A DsoftEncryptUtil.c938 soft_rsa_ctx_t *rsa_ctx = local
941 if (rsa_ctx != NULL)
942 if (rsa_ctx->key != NULL) {
943 soft_cleanup_object(rsa_ctx->key);
944 free(rsa_ctx->key);
/illumos-gate/usr/src/uts/common/crypto/io/
H A Drsa.c81 typedef struct rsa_ctx { struct

Completed in 76 milliseconds