Home
last modified time | relevance | path

Searched refs:cert (Results 676 - 700 of 1156) sorted by relevance

1...<<21222324252627282930>>...47

/third_party/node/deps/openssl/config/archs/linux64-mips64/no-asm/include/openssl/
H A Dcmp.h88 * -- invalid cert. template or missing mandatory information
432 int OSSL_CMP_CTX_set1_srvCert(OSSL_CMP_CTX *ctx, X509 *cert);
439 int OSSL_CMP_CTX_set1_cert(OSSL_CMP_CTX *ctx, X509 *cert);
463 int OSSL_CMP_CTX_set1_oldCert(OSSL_CMP_CTX *ctx, X509 *cert);
468 typedef int (*OSSL_CMP_certConf_cb_t) (OSSL_CMP_CTX *ctx, X509 *cert,
470 int OSSL_CMP_certConf_cb(OSSL_CMP_CTX *ctx, X509 *cert, int fail_info,
517 X509_STORE *trusted_store, X509 *cert);
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/
H A Dcmp.h88 * -- invalid cert. template or missing mandatory information
432 int OSSL_CMP_CTX_set1_srvCert(OSSL_CMP_CTX *ctx, X509 *cert);
439 int OSSL_CMP_CTX_set1_cert(OSSL_CMP_CTX *ctx, X509 *cert);
463 int OSSL_CMP_CTX_set1_oldCert(OSSL_CMP_CTX *ctx, X509 *cert);
468 typedef int (*OSSL_CMP_certConf_cb_t) (OSSL_CMP_CTX *ctx, X509 *cert,
470 int OSSL_CMP_certConf_cb(OSSL_CMP_CTX *ctx, X509 *cert, int fail_info,
517 X509_STORE *trusted_store, X509 *cert);
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/
H A Dcmp.h88 * -- invalid cert. template or missing mandatory information
432 int OSSL_CMP_CTX_set1_srvCert(OSSL_CMP_CTX *ctx, X509 *cert);
439 int OSSL_CMP_CTX_set1_cert(OSSL_CMP_CTX *ctx, X509 *cert);
463 int OSSL_CMP_CTX_set1_oldCert(OSSL_CMP_CTX *ctx, X509 *cert);
468 typedef int (*OSSL_CMP_certConf_cb_t) (OSSL_CMP_CTX *ctx, X509 *cert,
470 int OSSL_CMP_certConf_cb(OSSL_CMP_CTX *ctx, X509 *cert, int fail_info,
517 X509_STORE *trusted_store, X509 *cert);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dtlsv1_server_read.c402 struct x509_certificate *chain = NULL, *last = NULL, *cert; in tls_process_certificate() local
527 cert = x509_certificate_parse(pos, cert_len); in tls_process_certificate()
528 if (cert == NULL) { in tls_process_certificate()
537 chain = cert; in tls_process_certificate()
539 last->next = cert; in tls_process_certificate()
540 last = cert; in tls_process_certificate()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dtlsv1_server_read.c402 struct x509_certificate *chain = NULL, *last = NULL, *cert; in tls_process_certificate() local
527 cert = x509_certificate_parse(pos, cert_len); in tls_process_certificate()
528 if (cert == NULL) { in tls_process_certificate()
537 chain = cert; in tls_process_certificate()
539 last->next = cert; in tls_process_certificate()
540 last = cert; in tls_process_certificate()
/base/security/appverify/interfaces/innerkits/appverify_lite/src/
H A Dmbedtls_pkcs7.c544 /* scan every cert */ in ParseSignedDataCerts()
776 /* From the root ca cert, to found the signer secondary ca , and use secondary cert to in BuildSignerCertPath()
777 * find the next level ca cert */ in BuildSignerCertPath()
808 mbedtls_x509_crt *cert = signedData->certs; in ConstructSignerCerts() local
809 LOG_INFO("To filter one signer's cert"); in ConstructSignerCerts()
810 while (cert != NULL) { in ConstructSignerCerts()
811 if (SerialCmp(signerSerial, &cert->serial) == 0 && in ConstructSignerCerts()
812 CompareX509NameList(signerIssuer, &cert->issuer) == 0) { in ConstructSignerCerts()
813 LOG_INFO("Found signer's low level cert"); in ConstructSignerCerts()
[all...]
/base/security/dlp_permission_service/interfaces/inner_api/dlp_permission/test/unittest/src/
H A Ddlp_permission_kit_test.cpp306 std::vector<uint8_t> cert; in TestGenerateDlpCertWithInvalidParam() local
307 int32_t res = DlpPermissionKit::GenerateDlpCertificate(encPolicy, cert); in TestGenerateDlpCertWithInvalidParam()
429 std::vector<uint8_t> cert; in HWTEST_F() local
430 cert = { 1, 2, 3 }; in HWTEST_F()
431 generateDlpCertificateCallback->OnGenerateDlpCertificate(-1, cert); in HWTEST_F()
519 certParcel->cert = {1, 2, 3}; in HWTEST_F()
1215 std::vector<uint8_t> cert; in HWTEST_F() local
1217 generateDlpCertificateCallback->OnGenerateDlpCertificate(0, cert); in HWTEST_F()
/third_party/node/deps/openssl/openssl/crypto/pkcs7/
H A Dpk7_doit.c118 pkey = X509_get0_pubkey(ri->cert); in pkcs7_encode_rinfo()
965 STACK_OF(X509) *cert; in PKCS7_dataVerify()
979 cert = p7->d.sign->cert; in PKCS7_dataVerify()
981 cert = p7->d.signed_and_enveloped->cert; in PKCS7_dataVerify()
989 x509 = X509_find_by_issuer_and_serial(cert, ias->issuer, ias->serial); in PKCS7_dataVerify()
991 /* were we able to find the cert in passed to us */ in PKCS7_dataVerify()
998 if (!X509_STORE_CTX_init(ctx, cert_store, x509, cert)) { in PKCS7_dataVerify()
/third_party/node/deps/openssl/openssl/crypto/cms/
H A Dcms_sd.c178 int ossl_cms_set1_SignerIdentifier(CMS_SignerIdentifier *sid, X509 *cert, in ossl_cms_set1_SignerIdentifier() argument
183 if (!ossl_cms_set1_ias(&sid->d.issuerAndSerialNumber, cert)) in ossl_cms_set1_SignerIdentifier()
188 if (!ossl_cms_set1_keyid(&sid->d.subjectKeyIdentifier, cert)) in ossl_cms_set1_SignerIdentifier()
220 int ossl_cms_SignerIdentifier_cert_cmp(CMS_SignerIdentifier *sid, X509 *cert) in ossl_cms_SignerIdentifier_cert_cmp() argument
223 return ossl_cms_ias_cert_cmp(sid->d.issuerAndSerialNumber, cert); in ossl_cms_SignerIdentifier_cert_cmp()
225 return ossl_cms_keyid_cert_cmp(sid->d.subjectKeyIdentifier, cert); in ossl_cms_SignerIdentifier_cert_cmp()
464 /* NB ignore -1 return for duplicate cert */ in CMS_add1_signer()
607 int CMS_SignerInfo_cert_cmp(CMS_SignerInfo *si, X509 *cert) in CMS_SignerInfo_cert_cmp() argument
609 return ossl_cms_SignerIdentifier_cert_cmp(si->sid, cert); in CMS_SignerInfo_cert_cmp()
/third_party/node/deps/openssl/openssl/apps/
H A Dx509.c31 #define DEFAULT_DAYS 30 /* default cert validity period in days */
38 static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt);
65 {"passin", OPT_PASSIN, 's', "Private key and cert file pass-phrase source"},
85 "No cert output (except for requested printing)"},
125 "Check whether cert expires in the next arg seconds"},
156 {"CAform", OPT_CAFORM, 'F', "CA cert format (PEM/DER/P12); has no effect"},
193 static X509_REQ *x509_to_req(X509 *cert, int ext_copy, const char *names) in x509_to_req() argument
195 const STACK_OF(X509_EXTENSION) *cert_exts = X509_get0_extensions(cert); in x509_to_req()
200 X509_REQ *req = X509_to_X509_REQ(cert, NULL, NULL); in x509_to_req()
238 static int self_signed(X509_STORE *ctx, X509 *cert) in self_signed() argument
1160 purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt) purpose_print() argument
[all...]
/third_party/openssl/crypto/cms/
H A Dcms_sd.c178 int ossl_cms_set1_SignerIdentifier(CMS_SignerIdentifier *sid, X509 *cert, in ossl_cms_set1_SignerIdentifier() argument
183 if (!ossl_cms_set1_ias(&sid->d.issuerAndSerialNumber, cert)) in ossl_cms_set1_SignerIdentifier()
188 if (!ossl_cms_set1_keyid(&sid->d.subjectKeyIdentifier, cert)) in ossl_cms_set1_SignerIdentifier()
220 int ossl_cms_SignerIdentifier_cert_cmp(CMS_SignerIdentifier *sid, X509 *cert) in ossl_cms_SignerIdentifier_cert_cmp() argument
223 return ossl_cms_ias_cert_cmp(sid->d.issuerAndSerialNumber, cert); in ossl_cms_SignerIdentifier_cert_cmp()
225 return ossl_cms_keyid_cert_cmp(sid->d.subjectKeyIdentifier, cert); in ossl_cms_SignerIdentifier_cert_cmp()
456 /* NB ignore -1 return for duplicate cert */ in CMS_add1_signer()
603 int CMS_SignerInfo_cert_cmp(CMS_SignerInfo *si, X509 *cert) in CMS_SignerInfo_cert_cmp() argument
605 return ossl_cms_SignerIdentifier_cert_cmp(si->sid, cert); in CMS_SignerInfo_cert_cmp()
/third_party/openssl/apps/
H A Dx509.c31 #define DEFAULT_DAYS 30 /* default cert validity period in days */
38 static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt);
65 {"passin", OPT_PASSIN, 's', "Private key and cert file pass-phrase source"},
85 "No cert output (except for requested printing)"},
125 "Check whether cert expires in the next arg seconds"},
156 {"CAform", OPT_CAFORM, 'F', "CA cert format (PEM/DER/P12); has no effect"},
193 static X509_REQ *x509_to_req(X509 *cert, int ext_copy, const char *names) in x509_to_req() argument
195 const STACK_OF(X509_EXTENSION) *cert_exts = X509_get0_extensions(cert); in x509_to_req()
200 X509_REQ *req = X509_to_X509_REQ(cert, NULL, NULL); in x509_to_req()
238 static int self_signed(X509_STORE *ctx, X509 *cert) in self_signed() argument
1160 purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt) purpose_print() argument
[all...]
/third_party/openssl/crypto/pkcs7/
H A Dpk7_doit.c118 pkey = X509_get0_pubkey(ri->cert); in pkcs7_encode_rinfo()
965 STACK_OF(X509) *cert; in PKCS7_dataVerify()
979 cert = p7->d.sign->cert; in PKCS7_dataVerify()
981 cert = p7->d.signed_and_enveloped->cert; in PKCS7_dataVerify()
989 x509 = X509_find_by_issuer_and_serial(cert, ias->issuer, ias->serial); in PKCS7_dataVerify()
991 /* were we able to find the cert in passed to us */ in PKCS7_dataVerify()
998 if (!X509_STORE_CTX_init(ctx, cert_store, x509, cert)) { in PKCS7_dataVerify()
/base/startup/init/interfaces/innerkits/fs_manager/libfs_hvb/include/
H A Dfs_hvb.h61 int FsHvbConstructVerityTarget(DmVerityTarget *target, const char *devName, struct hvb_cert *cert);
/third_party/node/test/parallel/
H A Dtest-http2-connect-tls-with-delay.js13 cert: fixtures.readKey('agent1-cert.pem')
H A Dtest-http2-socket-proxy-handler-for-has.js13 cert: fixtures.readKey('agent1-cert.pem')
26 ca: fixtures.readKey('agent1-cert.pem'),
H A Dtest-https-agent-disable-session-reuse.js16 cert: fixtures.readKey('agent1-cert.pem')
H A Dtest-https-agent.js34 cert: fixtures.readKey('agent1-cert.pem')
H A Dtest-https-client-get-url.js37 cert: fixtures.readKey('agent1-cert.pem')
H A Dtest-https-client-override-global-agent.js14 cert: fixtures.readKey('agent1-cert.pem')
H A Dtest-https-eof-for-eom.js42 cert: fixtures.readKey('agent1-cert.pem')
H A Dtest-https-close.js11 cert: fixtures.readKey('agent1-cert.pem')
H A Dtest-https-localaddress-bind-error.js34 cert: fixtures.readKey('agent1-cert.pem')
H A Dtest-https-localaddress.js37 cert: fixtures.readKey('agent1-cert.pem')
H A Dtest-tls-client-destroy-soon.js37 cert: fixtures.readKey('agent2-cert.pem')

Completed in 24 milliseconds

1...<<21222324252627282930>>...47