/openssl/crypto/cmp/ |
H A D | cmp_server.c | 63 ctx->certReqId = OSSL_CMP_CERTREQID_INVALID; in OSSL_CMP_SRV_CTX_new() 224 int certReqId, central_keygen; in process_cert_request() local 259 certReqId = OSSL_CRMF_MSG_get_certReqId(crm); in process_cert_request() 265 srv_ctx->certReqId = certReqId; in process_cert_request() 428 int certReqId = ossl_cmp_asn1_get_int(status->certReqId); in process_certConf() local 432 if (certReqId != srv_ctx->certReqId) { in process_certConf() 516 int certReqId; in process_pollReq() local 536 certReqId = ossl_cmp_asn1_get_int(pr->certReqId); in process_pollReq() 537 if (!srv_ctx->process_pollReq(srv_ctx, req, certReqId, in process_pollReq() 546 if ((msg = ossl_cmp_pollRep_new(srv_ctx->ctx, certReqId, in process_pollReq() [all …]
|
H A D | cmp_msg.c | 520 || !ASN1_INTEGER_set(resp->certReqId, certReqId)) in ossl_cmp_certrep_new() 852 OSSL_CMP_MSG *ossl_cmp_certConf_new(OSSL_CMP_CTX *ctx, int certReqId, in ossl_cmp_certConf_new() argument 863 && (certReqId == OSSL_CMP_CERTREQID in ossl_cmp_certConf_new() 864 || certReqId == OSSL_CMP_CERTREQID_NONE))) in ossl_cmp_certConf_new() 884 if (!ASN1_INTEGER_set(certStatus->certReqId, certReqId)) in ossl_cmp_certConf_new() 945 || !ASN1_INTEGER_set(preq->certReqId, crid) in ossl_cmp_pollReq_new() 977 if (!ASN1_INTEGER_set(prep->certReqId, crid)) in ossl_cmp_pollRep_new() 1036 static int suitable_rid(const ASN1_INTEGER *certReqId, int rid) in suitable_rid() argument 1043 trid = ossl_cmp_asn1_get_int(certReqId); in suitable_rid() 1068 if (suitable_rid(pollRep->certReqId, rid)) in ossl_cmp_pollrepcontent_get0_pollrep() [all …]
|
H A D | cmp_local.h | 432 ASN1_INTEGER *certReqId; member 454 ASN1_INTEGER *certReqId; member 480 ASN1_INTEGER *certReqId; member 495 ASN1_INTEGER *certReqId; member 954 int certReqId, const OSSL_CMP_PKISI *si, 977 OSSL_CMP_MSG *ossl_cmp_certConf_new(OSSL_CMP_CTX *ctx, int certReqId, 1018 int ossl_cmp_exchange_certConf(OSSL_CMP_CTX *ctx, int certReqId,
|
H A D | cmp_asn.c | 952 ASN1_SIMPLE(OSSL_CMP_CERTSTATUS, certReqId, ASN1_INTEGER), 964 ASN1_SIMPLE(OSSL_CMP_CERTRESPONSE, certReqId, ASN1_INTEGER), 973 ASN1_SIMPLE(OSSL_CMP_POLLREQ, certReqId, ASN1_INTEGER) 983 ASN1_SIMPLE(OSSL_CMP_POLLREP, certReqId, ASN1_INTEGER),
|
H A D | cmp_client.c | 454 int ossl_cmp_exchange_certConf(OSSL_CMP_CTX *ctx, int certReqId, in ossl_cmp_exchange_certConf() argument 462 certConf = ossl_cmp_certConf_new(ctx, certReqId, fail_info, txt); in ossl_cmp_exchange_certConf() 689 rid = ossl_cmp_asn1_get_int(crep->certReqId); in cert_response()
|
/openssl/doc/internal/man3/ |
H A D | ossl_cmp_certreq_new.pod | 25 int certReqId, const OSSL_CMP_PKISI *si, 33 OSSL_CMP_MSG *ossl_cmp_certConf_new(OSSL_CMP_CTX *ctx, int certReqId, 72 with the given I<certReqId> and I<si> values and optionally with I<cert>, 127 received certificate with the given I<certReqId>. 134 ossl_cmp_pollReq_new() creates a Polling Request message with certReqId set to 137 ossl_cmp_pollRep_new() creates a Polling Response message with certReqId set to
|
/openssl/fuzz/ |
H A D | cmp.c | 104 int certReqId, in process_cert_request() argument 142 const OSSL_CMP_MSG *certConf, int certReqId, in process_certConf() argument 151 const OSSL_CMP_MSG *pollReq, int certReqId, in process_pollReq() argument
|
/openssl/doc/man3/ |
H A D | OSSL_CMP_SRV_CTX_new.pod | 41 int certReqId, 62 int certReqId, 67 int certReqId,
|
H A D | OSSL_CRMF_MSG_set0_validity.pod | 49 OSSL_CRMF_MSG_set_certReqId() sets I<rid> as the certReqId of I<crm>.
|
H A D | OSSL_CRMF_MSG_get0_tmpl.pod | 126 OSSL_CRMF_MSG_get_certReqId() retrieves the certReqId of I<crm>.
|
/openssl/crypto/crmf/ |
H A D | crmf_local.h | 352 ASN1_INTEGER *certReqId; member
|
H A D | crmf_lib.c | 279 if (crm == NULL || crm->certReq == NULL || crm->certReq->certReqId == NULL) { in OSSL_CRMF_MSG_set_certReqId() 284 return ASN1_INTEGER_set(crm->certReq->certReqId, rid); in OSSL_CRMF_MSG_set_certReqId() 313 return crmf_asn1_get_int(crm->certReq->certReqId); in OSSL_CRMF_MSG_get_certReqId()
|
H A D | crmf_asn.c | 221 ASN1_SIMPLE(OSSL_CRMF_CERTREQUEST, certReqId, ASN1_INTEGER),
|
/openssl/test/ |
H A D | cmp_server_test.c | 51 int certReqId, in process_cert_request() argument
|
H A D | cmp_msg_test.c | 390 if (!ASN1_INTEGER_set(cresp->certReqId, 99)) in execute_certrep_create()
|
/openssl/apps/lib/ |
H A D | cmp_mock_srv.c | 284 ossl_unused int certReqId, in process_cert_request() argument 656 ossl_unused int certReqId, in process_certConf() argument 688 ossl_unused int certReqId, in process_pollReq() argument
|
/openssl/include/openssl/ |
H A D | cmp.h.in | 498 (OSSL_CMP_SRV_CTX *srv_ctx, const OSSL_CMP_MSG *req, int certReqId, 516 int certReqId, 520 const OSSL_CMP_MSG *req, int certReqId,
|