Home
last modified time | relevance | path

Searched refs:p10CSR (Results 1 – 7 of 7) sorted by relevance

/freebsd/crypto/openssl/crypto/cmp/
H A Dcmp_msg.c211 if (ctx->p10CSR == NULL) { in ossl_cmp_msg_create()
215 if ((msg->body->value.p10cr = X509_REQ_dup(ctx->p10CSR)) == NULL) in ossl_cmp_msg_create()
284 if (ctx->p10CSR != NULL) /* first default is from any given CSR */ in determine_subj()
285 return X509_REQ_get_subject_name(ctx->p10CSR); in determine_subj()
320 if (for_KUR && refcert == NULL && ctx->p10CSR == NULL) { in OSSL_CMP_CTX_setup_CRM()
355 if (ctx->p10CSR != NULL in OSSL_CMP_CTX_setup_CRM()
356 && (exts = X509_REQ_get_extensions(ctx->p10CSR)) == NULL) in OSSL_CMP_CTX_setup_CRM()
606 && (ctx->oldCert != NULL || ctx->p10CSR != NULL in ossl_cmp_rr_new()
619 } else if (ctx->p10CSR != NULL) { in ossl_cmp_rr_new()
620 pubkey = X509_REQ_get0_pubkey(ctx->p10CSR); in ossl_cmp_rr_new()
[all …]
H A Dcmp_ctx.c242 X509_REQ_free(ctx->p10CSR); in OSSL_CMP_CTX_free()
737 DEFINE_OSSL_CMP_CTX_set1(p10CSR, X509_REQ) in DEFINE_OSSL_set1_up_ref()
782 if (ctx->p10CSR != NULL) in OSSL_CMP_CTX_get0_newPkey()
783 return priv ? NULL : X509_REQ_get0_pubkey(ctx->p10CSR); in OSSL_CMP_CTX_get0_newPkey()
793 if (ctx->p10CSR != NULL) in ossl_cmp_ctx_get0_newPubkey()
794 return X509_REQ_get0_pubkey(ctx->p10CSR); in ossl_cmp_ctx_get0_newPubkey()
H A Dcmp_hdr.c289 …: ctx->p10CSR != NULL ? X509_REQ_get_su… in ossl_cmp_hdr_init()
H A Dcmp_local.h121 X509_REQ *p10CSR; /* for P10CR: PKCS#10 CSR to be sent */ member
H A Dcmp_client.c911 if (ctx->oldCert == NULL && ctx->p10CSR == NULL in OSSL_CMP_exec_RR_ses()
/freebsd/crypto/openssl/test/
H A Dcmp_ctx_test.c799 DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, p10CSR, X509_REQ) in DEFINE_SET_CB_TEST()
/freebsd/crypto/openssl/doc/man3/
H A DOSSL_CMP_CTX_new.pod588 else the public key in the p10CSR if present, else the client's private key.