HomeSort by: relevance | last modified time | path
    Searched refs:bodytype (Results 1 - 14 of 14) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/apps/include/
cmp_mock_srv.h 30 int ossl_cmp_mock_srv_set_sendError(OSSL_CMP_SRV_CTX *srv_ctx, int bodytype);
  /src/crypto/external/apache2/openssl/dist/test/
cmp_msg_test.c 22 int bodytype; member in struct:test_fixture
89 fixture->bodytype,
123 EXECUTE_MSG_CREATION_TEST(ossl_cmp_msg_create(fixture->cmp_ctx, fixture->bodytype));
146 fixture->bodytype = OSSL_CMP_PKIBODY_IR;
164 fixture->bodytype = OSSL_CMP_PKIBODY_IR;
181 fixture->bodytype = OSSL_CMP_PKIBODY_CR;
191 fixture->bodytype = OSSL_CMP_PKIBODY_CR;
205 fixture->bodytype = OSSL_CMP_PKIBODY_RR;
223 fixture->bodytype = OSSL_CMP_PKIBODY_P10CR;
240 fixture->bodytype = OSSL_CMP_PKIBODY_P10CR
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
cmp_msg_test.c 22 int bodytype; member in struct:test_fixture
91 fixture->bodytype,
127 (fixture->cmp_ctx, fixture->bodytype));
150 fixture->bodytype = OSSL_CMP_PKIBODY_IR;
168 fixture->bodytype = OSSL_CMP_PKIBODY_IR;
185 fixture->bodytype = OSSL_CMP_PKIBODY_CR;
195 fixture->bodytype = OSSL_CMP_PKIBODY_CR;
209 fixture->bodytype = OSSL_CMP_PKIBODY_RR;
227 fixture->bodytype = OSSL_CMP_PKIBODY_P10CR;
244 fixture->bodytype = OSSL_CMP_PKIBODY_P10CR
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/include/
cmp_mock_srv.h 36 int ossl_cmp_mock_srv_set_sendError(OSSL_CMP_SRV_CTX *srv_ctx, int bodytype);
  /src/crypto/external/bsd/openssl/dist/crypto/cmp/
cmp_msg.c 161 OSSL_CMP_MSG *ossl_cmp_msg_create(OSSL_CMP_CTX *ctx, int bodytype)
171 || !ossl_cmp_msg_set_bodytype(msg, bodytype))
178 switch (bodytype) {
445 OSSL_CMP_MSG *ossl_cmp_certrep_new(OSSL_CMP_CTX *ctx, int bodytype,
459 if ((msg = ossl_cmp_msg_create(ctx, bodytype)) == NULL)
497 if (bodytype == OSSL_CMP_PKIBODY_IP && caPubs != NULL
639 int bodytype; local
644 bodytype = OSSL_CMP_MSG_get_bodytype(msg);
645 if (bodytype != OSSL_CMP_PKIBODY_GENM
646 && bodytype != OSSL_CMP_PKIBODY_GENP)
    [all...]
cmp_server.c 166 int bodytype; local
175 bodytype = OSSL_CMP_PKIBODY_CP;
178 bodytype = OSSL_CMP_PKIBODY_IP;
181 bodytype = OSSL_CMP_PKIBODY_KUP;
235 msg = ossl_cmp_certrep_new(srv_ctx->ctx, bodytype, certReqId, si,
cmp_local.h 826 /* OSSL_CMP_MSG bodytype ASN.1 choice IDs */
865 OSSL_CMP_MSG *ossl_cmp_msg_create(OSSL_CMP_CTX *ctx, int bodytype);
866 OSSL_CMP_MSG *ossl_cmp_certreq_new(OSSL_CMP_CTX *ctx, int bodytype,
868 OSSL_CMP_MSG *ossl_cmp_certrep_new(OSSL_CMP_CTX *ctx, int bodytype,
cmp_client.c 413 static X509 *get1_cert_status(OSSL_CMP_CTX *ctx, int bodytype,
447 if (bodytype != OSSL_CMP_PKIBODY_KUR) {
  /src/crypto/external/apache2/openssl/dist/apps/lib/
cmp_mock_srv.c 177 int ossl_cmp_mock_srv_set_sendError(OSSL_CMP_SRV_CTX *srv_ctx, int bodytype)
185 /* might check bodytype, but this would require exporting all body types */
186 ctx->sendError = bodytype;
292 int bodytype, central_keygen; local
301 bodytype = OSSL_CMP_MSG_get_bodytype(cert_req);
302 if (ctx->sendError == 1 || ctx->sendError == bodytype) {
356 if (bodytype == OSSL_CMP_KUR
  /src/crypto/external/apache2/openssl/dist/crypto/cmp/
cmp_server.c 223 int bodytype; local
232 bodytype = OSSL_CMP_PKIBODY_CP;
235 bodytype = OSSL_CMP_PKIBODY_IP;
238 bodytype = OSSL_CMP_PKIBODY_KUP;
300 msg = ossl_cmp_certrep_new(srv_ctx->ctx, bodytype, certReqId, si,
cmp_msg.c 185 OSSL_CMP_MSG *ossl_cmp_msg_create(OSSL_CMP_CTX *ctx, int bodytype)
195 || !ossl_cmp_msg_set_bodytype(msg, bodytype))
202 switch (bodytype) {
511 OSSL_CMP_MSG *ossl_cmp_certrep_new(OSSL_CMP_CTX *ctx, int bodytype,
526 if ((msg = ossl_cmp_msg_create(ctx, bodytype)) == NULL)
573 if (bodytype == OSSL_CMP_PKIBODY_IP && caPubs != NULL
724 int bodytype; local
729 bodytype = OSSL_CMP_MSG_get_bodytype(msg);
730 if (bodytype != OSSL_CMP_PKIBODY_GENM
731 && bodytype != OSSL_CMP_PKIBODY_GENP)
    [all...]
cmp_local.h 911 /* OSSL_CMP_MSG bodytype ASN.1 choice IDs */
950 OSSL_CMP_MSG *ossl_cmp_msg_create(OSSL_CMP_CTX *ctx, int bodytype);
951 OSSL_CMP_MSG *ossl_cmp_certreq_new(OSSL_CMP_CTX *ctx, int bodytype,
953 OSSL_CMP_MSG *ossl_cmp_certrep_new(OSSL_CMP_CTX *ctx, int bodytype,
cmp_client.c 504 static X509 *get1_cert_status(OSSL_CMP_CTX *ctx, int bodytype,
538 if (bodytype != OSSL_CMP_PKIBODY_KUR) {
  /src/crypto/external/bsd/openssl/dist/apps/lib/
cmp_mock_srv.c 132 int ossl_cmp_mock_srv_set_sendError(OSSL_CMP_SRV_CTX *srv_ctx, int bodytype)
140 /* might check bodytype, but this would require exporting all body types */
141 ctx->sendError = bodytype;

Completed in 40 milliseconds