Home
last modified time | relevance | path

Searched refs:cert (Results 1 - 25 of 64) sorted by relevance

123

/developtools/hapsigner/hapsigntool_cpp/api/include/
H A Dcert_tools.h33 static bool SaveCertTofile(const std::string& filename, X509* cert);
42 static bool SetBisicConstraints(Options* options, X509* cert);
43 static bool SetBisicConstraintsPathLen(Options* options, X509* cert);
44 static bool SetSubjectForCert(X509_REQ* certReq, X509* cert);
45 static bool SignForSubCert(X509* cert, X509_REQ* csr, X509_REQ* caReq,
47 static bool SetKeyUsage(X509* cert, Options* options);
48 static bool SetkeyUsageExt(X509* cert, Options* options);
49 static bool SetCertValidity(X509* cert, int validity);
51 static bool SetCertVersion(X509* cert, int versionNum);
52 static bool SetCertSerialNum(X509* cert);
[all...]
H A Dsign_tool_service_impl.h38 bool OutputModeOfCert(X509* cert, Options* options);
45 bool GetAndOutPutCert(LocalizationAdapter& adapter, X509* cert);
50 bool OutPutCert(X509* cert, const std::string& outPutPath);
51 bool PrintX509CertFromMemory(X509* cert);
54 bool X509CertVerify(X509* cert, EVP_PKEY* privateKey);
/developtools/hapsigner/hapsigntool_cpp/api/src/
H A Dcert_tools.cpp56 bool CertTools::SaveCertTofile(const std::string& filename, X509* cert) in SaveCertTofile() argument
65 if (PEM_write_bio_X509(certBio, cert) < 0) { in SaveCertTofile()
103 bool CertTools::SetBisicConstraints(Options* options, X509* cert) in SetBisicConstraints() argument
127 if (!X509_add_ext(cert, ext, -1)) { in SetBisicConstraints()
139 bool CertTools::SetBisicConstraintsPathLen(Options* options, X509* cert) in SetBisicConstraintsPathLen() argument
152 if (!X509_add_ext(cert, ext, -1)) { in SetBisicConstraintsPathLen()
162 bool CertTools::SignForSubCert(X509* cert, X509_REQ* subcsr, X509_REQ* rootcsr, EVP_PKEY* caPrikey, Options* options) in SignForSubCert() argument
177 result = (!X509_set_pubkey(cert, pubKey)); in SignForSubCert()
182 result = (!X509_set_issuer_name(cert, issuerName)); in SignForSubCert()
187 result = (!X509_set_subject_name(cert, subjectNam in SignForSubCert()
210 X509* cert = X509_new(); SignCsrGenerateCert() local
235 SetSubjectForCert(X509_REQ* certReq, X509* cert) SetSubjectForCert() argument
260 X509* cert = X509_new(); GenerateRootCertificate() local
320 SetKeyUsage(X509* cert, Options* options) SetKeyUsage() argument
359 SetkeyUsageExt(X509* cert, Options* options) SetkeyUsageExt() argument
382 SetExpandedInformation(X509* cert, Options* options) SetExpandedInformation() argument
394 SetPubkeyAndSignCert(X509* cert, X509_REQ* issuercsr, X509_REQ* certReq, EVP_PKEY* keyPair, Options* options) SetPubkeyAndSignCert() argument
434 X509* cert = X509_new(); GenerateCert() local
536 X509* cert = X509_new(); ReadfileToX509() local
549 SetCertVersion(X509* cert, int versionNum) SetCertVersion() argument
559 SetCertSerialNum(X509* cert) SetCertSerialNum() argument
588 SetCertIssuerName(X509* cert, X509_NAME* issuer) SetCertIssuerName() argument
598 SetCertSubjectName(X509* cert, X509_REQ* subjectCsr) SetCertSubjectName() argument
614 SetCertValidityStartAndEnd(X509* cert, long vilidityStart, long vilidityEnd) SetCertValidityStartAndEnd() argument
629 SetCertPublickKey(X509* cert, X509_REQ* subjectCsr) SetCertPublickKey() argument
647 SetBasicExt(X509* cert) SetBasicExt() argument
661 SetkeyUsageExt(X509* cert) SetkeyUsageExt() argument
675 SetKeyUsageEndExt(X509* cert) SetKeyUsageEndExt() argument
689 SetKeyIdentifierExt(X509* cert) SetKeyIdentifierExt() argument
722 SetAuthorizeKeyIdentifierExt(X509* cert) SetAuthorizeKeyIdentifierExt() argument
750 SetSignCapacityExt(X509* cert, const char signCapacity[], int capacityLen) SetSignCapacityExt() argument
777 SignCert(X509* cert, EVP_PKEY* privateKey, std::string signAlg) SignCert() argument
795 SetCertValidity(X509* cert, int validity) SetCertValidity() argument
816 X509* cert = X509_new(); // in this function, should not release X509cert memory GenerateEndCert() local
[all...]
H A Dsign_tool_service_impl.cpp99 SIGNATURE_TOOLS_LOGE("generate root cert failed!"); in GenerateRootCertToFile()
109 X509* cert = nullptr; in GenerateSubCertToFile() local
119 cert = CertTools::GenerateSubCert(rootKey, csr, options); in GenerateSubCertToFile()
120 if (!cert) { in GenerateSubCertToFile()
123 if (!X509CertVerify(cert, rootKey)) { in GenerateSubCertToFile()
126 if (!OutputModeOfCert(cert, options)) { in GenerateSubCertToFile()
132 SIGNATURE_TOOLS_LOGE("generate sub cert failed!"); in GenerateSubCertToFile()
133 X509_free(cert); in GenerateSubCertToFile()
180 bool SignToolServiceImpl::OutputModeOfCert(X509* cert, Options* options) in OutputModeOfCert() argument
184 if (!CertTools::SaveCertTofile(outFile, cert)) { in OutputModeOfCert()
204 X509* cert = nullptr; GenerateCert() local
332 X509CertVerify(X509* cert, EVP_PKEY* privateKey) X509CertVerify() argument
443 GetAndOutPutCert(LocalizationAdapter& adapter, X509* cert) GetAndOutPutCert() argument
577 OutPutCert(X509* cert, const std::string& outPutPath) OutPutCert() argument
618 PrintX509CertFromMemory(X509* cert) PrintX509CertFromMemory() argument
[all...]
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/utils/
H A DCertChainUtils.java29 import java.security.cert.CertPath;
30 import java.security.cert.CertPathBuilder;
31 import java.security.cert.CertPathBuilderResult;
32 import java.security.cert.CertPathValidator;
33 import java.security.cert.CertPathValidatorResult;
34 import java.security.cert.CertStore;
35 import java.security.cert.CertificateFactory;
36 import java.security.cert.CollectionCertStoreParameters;
37 import java.security.cert.PKIXBuilderParameters;
38 import java.security.cert
[all...]
H A DDigestUtils.java25 import java.security.cert.CRL;
26 import java.security.cert.CRLException;
27 import java.security.cert.Certificate;
28 import java.security.cert.CertificateException;
29 import java.security.cert.CertificateFactory;
30 import java.security.cert.X509CRL;
31 import java.security.cert.X509Certificate;
H A DKeyStoreHelper.java24 import org.bouncycastle.cert.X509v3CertificateBuilder;
25 import org.bouncycastle.cert.jcajce.JcaX509CertificateConverter;
26 import org.bouncycastle.cert.jcajce.JcaX509v3CertificateBuilder;
39 import java.security.cert.Certificate;
40 import java.security.cert.CertificateException;
41 import java.security.cert.CertificateExpiredException;
42 import java.security.cert.CertificateNotYetValidException;
43 import java.security.cert.X509Certificate;
219 * Validate the cert and save into cert lis
[all...]
H A DCertificateUtils.java27 import java.security.cert.CertificateException;
28 import java.security.cert.CertificateExpiredException;
29 import java.security.cert.CertificateFactory;
30 import java.security.cert.X509Certificate;
31 import java.security.cert.CertificateNotYetValidException;
50 * Check cert list is cert chain.
/developtools/hapsigner/hapsigntool_cpp/utils/src/
H A Dverify_cert_openssl_utils.cpp63 X509* cert = certsChain[0]; in GetCertsChain() local
64 while ((issuerCert = FindCertOfIssuer(cert, certVisitSign)) != nullptr) { in GetCertsChain()
67 cert = issuerCert; in GetCertsChain()
69 if (CertVerify(cert, cert) == false) { in GetCertsChain()
74 X509_NAME* aName = X509_get_issuer_name(cert); in GetCertsChain()
75 X509_NAME* bName = X509_get_subject_name(cert); in GetCertsChain()
88 X509* VerifyCertOpensslUtils::FindCertOfIssuer(X509* cert, CertSign& certVisitSign) in FindCertOfIssuer() argument
90 if (cert == nullptr) { in FindCertOfIssuer()
94 X509_NAME* signCertIssuerName = X509_get_issuer_name(cert); in FindCertOfIssuer()
110 CertVerify(X509* cert, const X509* issuerCert) CertVerify() argument
241 GetSubjectFromX509(const X509* cert, std::string& subject) GetSubjectFromX509() argument
253 GetIssuerFromX509(const X509* cert, std::string& issuer) GetIssuerFromX509() argument
[all...]
H A Dkey_store_helper.cpp100 void KeyStoreHelper::KeyPairFree(X509* cert, PKCS12* p12, BIO* bioOut, const std::string& Message) in KeyPairFree() argument
106 X509_free(cert); in KeyPairFree()
107 cert = nullptr; in KeyPairFree()
149 bool KeyStoreHelper::InitX509(X509& cert, EVP_PKEY& evpPkey) in InitX509() argument
167 X509_set_serialNumber(&cert, ai); in InitX509()
168 X509_gmtime_adj(X509_get_notBefore(&cert), 0); in InitX509()
169 X509_gmtime_adj(X509_get_notAfter(&cert), (long)DEFAULT_VALIDITY_DAYS * ONE_DAY_TIME); in InitX509()
178 X509_set_issuer_name(&cert, issuerName); in InitX509()
186 X509_set_subject_name(&cert, subjectName); in InitX509()
187 if (!X509_set_pubkey(&cert, in InitX509()
309 X509* cert = sk_X509_value(ocerts, i); GetPublicKey() local
366 X509* cert = X509_new(); WriteKeyStore() local
407 CreatePKCS12(PKCS12** p12, const std::string& charsStorePath, char* keyStorePwd, char* keyPwd, const std::string& charsAlias, EVP_PKEY* evpPkey, X509* cert) CreatePKCS12() argument
445 X509* cert = nullptr; ReadKeyStore() local
553 CreatePKCS12(const char* keyStorePwd, const char* keyPwd, const char* name, EVP_PKEY* pkey, X509* cert, int keyNid, int certNid, int iter, int macStatus, int keyType, STACK_OF(PKCS7)** safes) CreatePKCS12() argument
616 SetCertPkcs12(X509* cert, PKCS12_SAFEBAG* bag, STACK_OF(PKCS12_SAFEBAG)* certBags, unsigned char* keyId, unsigned int keyIdLen, const char* name, STACK_OF(PKCS7)** safes, int certNid, int iter, const char* keyStorePwd) SetCertPkcs12() argument
[all...]
H A Dverify_hap_openssl_utils.cpp73 VerifyCertOpensslUtils::GenerateCertSignFromCertStack(p7->d.sign->cert, certVisitSign); in GetCertChains()
93 X509* cert = PKCS7_cert_from_signer_info(p7, signInfo); in GetCertChains() local
94 if (cert == nullptr) { in GetCertChains()
95 SIGNATURE_TOOLS_LOGE("get cert for %dst signInfo failed", i); in GetCertChains()
100 pkcs7Context.certChain[i].push_back(X509_dup(cert)); in GetCertChains()
102 certVisitSign[cert] = true; in GetCertChains()
117 SIGNATURE_TOOLS_LOGE("get cert chain for signInfo failed"); in VerifyCertChain()
212 X509* cert = pkcs7Context.certChain[signInfoNum][0]; variable
214 if (PKCS7_signatureVerify(p7Bio, pkcs7Context.p7, signInfo, cert) <= 0) {
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/verify/
H A DHapVerify.java27 import org.bouncycastle.cert.X509CRLHolder;
28 import org.bouncycastle.cert.X509CertificateHolder;
29 import org.bouncycastle.cert.jcajce.JcaX509CRLConverter;
30 import org.bouncycastle.cert.jcajce.JcaX509CertificateConverter;
46 import java.security.cert.CRLException;
47 import java.security.cert.CertificateEncodingException;
48 import java.security.cert.CertificateException;
49 import java.security.cert.X509CRL;
50 import java.security.cert.X509CRLEntry;
51 import java.security.cert
165 verifyCRL(X509CRL crl, X509Certificate cert, List<X509Certificate> certificates) verifyCRL() argument
395 printCert(X509Certificate cert) printCert() argument
[all...]
H A DVerifyUtils.java18 import org.bouncycastle.cert.X509CertificateHolder;
28 import java.security.cert.CertificateException;
65 "No matched cert or more than one matched certs: " + collection); in verifyCmsSignedData()
67 X509CertificateHolder cert = collection.iterator().next(); in verifyCmsSignedData()
68 return new JcaSimpleSignerInfoVerifierBuilder().setProvider("BC").build(cert); in verifyCmsSignedData()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/cert/
H A DCertBuilder.java16 package com.ohos.hapsigntool.cert;
32 import org.bouncycastle.cert.CertIOException;
33 import org.bouncycastle.cert.X509v3CertificateBuilder;
34 import org.bouncycastle.cert.jcajce.JcaX509CertificateConverter;
35 import org.bouncycastle.cert.jcajce.JcaX509ExtensionUtils;
46 import java.security.cert.CertificateException;
47 import java.security.cert.X509Certificate;
213 X509Certificate cert = null; in build()
215 cert = new JcaX509CertificateConverter().setProvider(BouncyCastleProvider.PROVIDER_NAME) in build()
217 cert in build()
[all...]
/developtools/hapsigner/hapsigntool_cpp_test/unittest/utils/
H A Dcert_tools_test.cpp77 X509* cert = X509_new(); in HWTEST_F() local
78 bool ret = CertTools::SetBisicConstraints(&options, cert); in HWTEST_F()
80 X509_free(cert); in HWTEST_F()
93 X509* cert = X509_new(); in HWTEST_F() local
97 bool ret = CertTools::SignForSubCert(cert, subcsr, rootcsr, nullptr, &options); in HWTEST_F()
103 * @tc.desc: This function tests failed for interface SetSubjectForCert due to parameter cert is null
159 X509* cert = X509_new(); in HWTEST_F() local
161 bool ret = CertTools::SetCertPublickKey(cert, certReq); in HWTEST_F()
164 X509_free(cert); in HWTEST_F()
169 * @tc.desc: This function tests failed for interface SetCertPublickKey due to parameter cert i
[all...]
/developtools/hapsigner/hapsigntool_cpp/utils/include/
H A Dverify_cert_openssl_utils.h37 DLL_EXPORT static X509* FindCertOfIssuer(X509* cert, CertSign& certVisitSign);
40 DLL_EXPORT static X509_CRL* GetCrlBySignedCertIssuer(STACK_OF(X509_CRL)* crls, const X509* cert); member in OHOS::SignatureTools::VerifyCertOpensslUtils
46 DLL_EXPORT static bool CertVerify(X509* cert, const X509* issuerCert);
49 DLL_EXPORT static bool GetSubjectFromX509(const X509* cert, std::string& subject);
50 DLL_EXPORT static bool GetIssuerFromX509(const X509* cert, std::string& issuer);
/developtools/hapsigner/hapsigntool_cpp_test/fuzztest/generate_ca/generateca015_fuzzer/
H A Dgenerateca015_fuzzer.cpp33 X509* cert = X509_new(); in DoSomethingInterestingWithMyAPI() local
34 bool ret = CertTools::SetAuthorizeKeyIdentifierExt(cert); in DoSomethingInterestingWithMyAPI()
35 X509_free(cert); in DoSomethingInterestingWithMyAPI()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/utils/
H A DCmsUtils.java18 import org.bouncycastle.cert.X509CertificateHolder;
27 import java.security.cert.CertificateException;
51 throw new OperatorCreationException("No matched cert: " + collection); in isCollectionValid()
64 X509CertificateHolder cert = collection.iterator().next(); in verifyCmsSignedData()
66 return new JcaSimpleSignerInfoVerifierBuilder().setProvider("BC").build(cert); in verifyCmsSignedData()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/api/
H A DSignToolServiceImpl.java47 import java.security.cert.CertificateException;
48 import java.security.cert.X509Certificate;
114 * Generate cert.
135 X509Certificate cert = CertTools.generateCert(rootKeyPair, csr, adapter); in generateCert()
136 return outputCert(cert, adapter.getOutFile()); in generateCert()
179 X509Certificate cert; in generateCA()
181 cert = CertTools.generateRootCaCert(rootKey, csr, adapter); in generateCA()
183 cert = CertTools.generateSubCert(rootKey, csr, adapter); in generateCA()
185 return outputCert(cert, adapter.getOutFile()); in generateCA()
189 * Generate app cert
232 getOutputCert(LocalizationAdapter adapter, X509Certificate cert) getOutputCert() argument
[all...]
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/sign/
H A DBcSignedDataGenerator.java44 import org.bouncycastle.cert.jcajce.JcaX509CRLHolder;
45 import org.bouncycastle.cert.jcajce.JcaX509CertificateHolder;
59 import java.security.cert.CRLException;
60 import java.security.cert.CertificateEncodingException;
61 import java.security.cert.X509CRL;
62 import java.security.cert.X509Certificate;
130 X509Certificate cert = signConfig.getCertificates().get(0); in createSignInfo()
131 if (!verifySignFromServer(cert.getPublicKey(), signBytes, signPair, codeAuthed)) { in createSignInfo()
134 JcaX509CertificateHolder certificateHolder = getJcaX509CertificateHolder(cert); in createSignInfo()
171 private JcaX509CertificateHolder getJcaX509CertificateHolder(X509Certificate cert) throw argument
[all...]
/developtools/hapsigner/hapsigntool_cpp/profile/src/
H A Dpkcs7_data.cpp168 PrintErrorNumberMsg("VERIFY_ERROR", VERIFY_ERROR, "cert Chain verify failed"); in Verify()
169 PrintCertChainSub(m_p7->d.sign->cert); in Verify()
205 X509* cert = NULL; in InitPkcs7() local
230 cert = sk_X509_delete(certs, 0); in InitPkcs7()
231 m_p7 = Pkcs7Sign(cert, certs, md, content, m_flags, attrs); in InitPkcs7()
241 X509_free(cert); in InitPkcs7()
287 bool PKCS7Data::X509NameCompare(const X509* cert, const X509* issuerCert) in X509NameCompare() argument
289 if (cert == nullptr || issuerCert == nullptr) { in X509NameCompare()
291 "input cert is NULL"); in X509NameCompare()
294 X509_NAME* aName = X509_get_issuer_name(cert); in X509NameCompare()
331 FindSubCertThenEraseItFromSets(X509* cert, std::unordered_set<X509*>& x509Sets) FindSubCertThenEraseItFromSets() argument
459 X509* cert = sk_X509_value(certs, i); CheckSginerInfoSignTimeInCertChainValidPeriod() local
734 Pkcs7SetSignerInfo(PKCS7_SIGNER_INFO* info, X509* cert, const EVP_MD* hash) Pkcs7SetSignerInfo() argument
756 Pkcs7AddSignature(PKCS7* pkcs7, X509* cert, const EVP_MD* hash) Pkcs7AddSignature() argument
[all...]
/developtools/hapsigner/hapsigntool_cpp_test/unittest/generateKeyPair/
H A Dgenerate_keypair_test.cpp474 X509* cert = X509_new(); in HWTEST_F() local
485 keyhelper.InitX509(*cert, *keypair); in HWTEST_F()
487 keyhelper.CreatePKCS12(&p12, keyStorePath.c_str(), storePwd, keyPwd, alias.c_str(), keypair, cert); in HWTEST_F()
500 X509* cert = X509_new(); in HWTEST_F() local
511 int ret = keyhelper.CreatePKCS12(&p12, keyStorePath.c_str(), storePwd, keyPwd, alias.c_str(), keypair, cert); in HWTEST_F()
536 X509* cert = X509_new(); in HWTEST_F() local
547 keyhelper.InitX509(*cert, *keypair); in HWTEST_F()
548 int ret = keyhelper.CreatePKCS12(&p12, keyStorePath.c_str(), storePwd, keyPwd, alias.c_str(), keypair, cert); in HWTEST_F()
560 X509* cert = X509_new(); in HWTEST_F() local
569 keyhelper.InitX509(*cert, *keypai in HWTEST_F()
583 X509* cert = X509_new(); HWTEST_F() local
696 X509* cert = X509_new(); HWTEST_F() local
722 X509* cert = X509_new(); HWTEST_F() local
747 X509* cert = X509_new(); HWTEST_F() local
772 X509* cert = X509_new(); HWTEST_F() local
[all...]
/developtools/hapsigner/hapsigntool_cpp_test/fuzztest/process_cmd/processcmd023_fuzzer/
H A Dprocesscmd023_fuzzer.cpp31 X509* cert = X509_new(); in DoSomethingInterestingWithMyAPI() local
44 serviceImplPtr->PrintX509CertFromMemory(cert); in DoSomethingInterestingWithMyAPI()
46 X509_free(cert); in DoSomethingInterestingWithMyAPI()
/developtools/hapsigner/hapsigntool_cpp_test/unittest/hapSign/
H A Dhap_sign_test.cpp1492 X509* cert = nullptr; in HWTEST_F() local
1501 cert = PEM_read_bio_X509(certBio, nullptr, nullptr, nullptr); in HWTEST_F()
1502 if (cert == nullptr) { in HWTEST_F()
1505 sk_X509_push(skCert, cert); in HWTEST_F()
1529 X509* cert = X509_new(); in HWTEST_F() local
1532 CertTools::SetCertIssuerName(cert, BuildDN(issuername, issuerReq)); in HWTEST_F()
1535 X509_set_subject_name(cert, BuildDN(subjectname, issuerReq)); in HWTEST_F()
1545 bool ret = signProvider->CheckInputCertMatchWithProfile(cert1, cert); in HWTEST_F()
1546 X509_free(cert); in HWTEST_F()
1564 X509* cert in HWTEST_F() local
1683 X509* cert = X509_new(); HWTEST_F() local
1719 X509* cert = X509_new(); HWTEST_F() local
1757 X509* cert = X509_new(); HWTEST_F() local
1796 X509* cert = X509_new(); HWTEST_F() local
1832 X509* cert = X509_new(); HWTEST_F() local
1868 X509* cert = X509_new(); HWTEST_F() local
[all...]
/developtools/hapsigner/hapsigntool_cpp_test/unittest/generateCA/
H A Dgenerate_sub_ca_test.cpp85 X509* cert = CertTools::GenerateRootCertificate(keyPair, csr, params.get()); in HWTEST_F() local
86 EXPECT_NE(cert, nullptr); in HWTEST_F()
128 X509* cert = CertTools::GenerateRootCertificate(keyPair, csr, params.get()); in HWTEST_F() local
129 EXPECT_EQ(cert, nullptr); in HWTEST_F()
220 * @tc.desc: Test function of SetCertVersion() interface for set cert version FAILED.
226 X509* cert = nullptr; in HWTEST_F() local
227 bool res = CertTools::SetCertVersion(cert, 1); in HWTEST_F()
232 * @tc.desc: Test function of SetPubkeyAndSignCert() interface for set cert pubey FAILED.
274 X509* cert = CertTools::GenerateRootCertificate(keyPair, csr, params.get()); in HWTEST_F() local
275 EXPECT_NE(cert, nullpt in HWTEST_F()
325 X509* cert = nullptr; HWTEST_F() local
371 X509* cert = nullptr; HWTEST_F() local
415 X509* cert = nullptr; HWTEST_F() local
459 X509* cert = nullptr; HWTEST_F() local
472 X509* cert = X509_new(); HWTEST_F() local
486 X509* cert = X509_new(); HWTEST_F() local
501 X509* cert = X509_new(); HWTEST_F() local
548 X509* cert = X509_new(); HWTEST_F() local
595 X509* cert = X509_new(); HWTEST_F() local
831 X509* cert = X509_new(); HWTEST_F() local
846 X509* cert = X509_new(); HWTEST_F() local
892 X509* cert = X509_new(); HWTEST_F() local
939 X509* cert = X509_new(); HWTEST_F() local
986 X509* cert = X509_new(); HWTEST_F() local
1033 X509* cert = X509_new(); HWTEST_F() local
1113 X509* cert = X509_new(); HWTEST_F() local
1417 X509* cert = X509_new(); HWTEST_F() local
[all...]

Completed in 18 milliseconds

123