Lines Matching refs:cert
123 const CERT_CONTEXT *cert; in _test_store_is_empty() local
125 cert = CertEnumCertificatesInStore(store, NULL); in _test_store_is_empty()
126 ok_(__FILE__,line)(!cert && GetLastError() == CRYPT_E_NOT_FOUND, "store is not empty\n"); in _test_store_is_empty()
1447 PCCERT_CONTEXT cert; in testFileStore() local
1489 cert = CertEnumCertificatesInStore(store, NULL); in testFileStore()
1490 ok(cert != NULL, "CertEnumCertificatesInStore failed: %08x\n", in testFileStore()
1492 CertFreeCertificateContext(cert); in testFileStore()
1675 PCCERT_CONTEXT cert; in testFileNameStore() local
1682 cert = CertEnumCertificatesInStore(store, NULL); in testFileNameStore()
1683 ok(cert != NULL, "CertEnumCertificatesInStore failed: %08x\n", in testFileNameStore()
1685 cert = CertEnumCertificatesInStore(store, cert); in testFileNameStore()
1686 ok(!cert, "Expected only one cert\n"); in testFileNameStore()
1696 PCCERT_CONTEXT cert; in testFileNameStore() local
1703 cert = CertEnumCertificatesInStore(store, NULL); in testFileNameStore()
1704 ok(cert != NULL, "CertEnumCertificatesInStore failed: %08x\n", in testFileNameStore()
1706 cert = CertEnumCertificatesInStore(store, cert); in testFileNameStore()
1707 ok(!cert, "Expected only one cert\n"); in testFileNameStore()
1717 PCCERT_CONTEXT cert; in testFileNameStore() local
1724 cert = CertEnumCertificatesInStore(store, NULL); in testFileNameStore()
1725 ok(cert != NULL, "CertEnumCertificatesInStore failed: %08x\n", in testFileNameStore()
1727 cert = CertEnumCertificatesInStore(store, cert); in testFileNameStore()
1728 ok(!cert, "Expected only one cert\n"); in testFileNameStore()
1778 PCCERT_CONTEXT cert; in testFileNameStore() local
1785 cert = CertEnumCertificatesInStore(store, NULL); in testFileNameStore()
1786 ok(cert != NULL, "CertEnumCertificatesInStore failed: %08x\n", in testFileNameStore()
1788 cert = CertEnumCertificatesInStore(store, cert); in testFileNameStore()
1789 ok(!cert, "Expected only one cert\n"); in testFileNameStore()
1799 PCCERT_CONTEXT cert; in testFileNameStore() local
1806 cert = CertEnumCertificatesInStore(store, NULL); in testFileNameStore()
1807 ok(cert != NULL, "CertEnumCertificatesInStore failed: %08x\n", in testFileNameStore()
1809 cert = CertEnumCertificatesInStore(store, cert); in testFileNameStore()
1810 ok(!cert, "Expected only one cert\n"); in testFileNameStore()
1891 PCCERT_CONTEXT cert = NULL; in testMessageStore() local
1896 cert = CertEnumCertificatesInStore(store, cert); in testMessageStore()
1897 if (cert) in testMessageStore()
1899 } while (cert); in testMessageStore()
1917 cert = CertEnumCertificatesInStore(store, cert); in testMessageStore()
1918 if (cert) in testMessageStore()
1920 } while (cert); in testMessageStore()
1940 PCCERT_CONTEXT cert = NULL; in testMessageStore() local
1944 cert = CertEnumCertificatesInStore(store, cert); in testMessageStore()
1945 if (cert) in testMessageStore()
1947 } while (cert); in testMessageStore()
2003 PCCERT_CONTEXT cert; in testSerializedStore() local
2006 cert = CertEnumCertificatesInStore(store, NULL); in testSerializedStore()
2007 ok(cert != NULL, "CertEnumCertificatesInStore failed: %08x\n", in testSerializedStore()
2009 cert = CertEnumCertificatesInStore(store, cert); in testSerializedStore()
2010 ok(!cert, "Expected only one cert\n"); in testSerializedStore()
2022 PCCERT_CONTEXT cert; in testSerializedStore() local
2025 cert = CertEnumCertificatesInStore(store, NULL); in testSerializedStore()
2026 ok(cert != NULL, "CertEnumCertificatesInStore failed: %08x\n", in testSerializedStore()
2028 cert = CertEnumCertificatesInStore(store, cert); in testSerializedStore()
2029 ok(!cert, "Expected only one cert\n"); in testSerializedStore()
2081 const CERT_CONTEXT *cert, *cert2; in testCertRegisterSystemStore() local
2108 cert = CertCreateCertificateContext(X509_ASN_ENCODING, bigCert, sizeof(bigCert)); in testCertRegisterSystemStore()
2109 … ok (cert != NULL, "Failed creating cert at %08x, last error: %x\n", cur_flag, GetLastError()); in testCertRegisterSystemStore()
2110 if (cert) in testCertRegisterSystemStore()
2112 ret = CertAddCertificateContextToStore(hstore, cert, CERT_STORE_ADD_NEW, NULL); in testCertRegisterSystemStore()
2116 ok (cert2 != NULL && cert2->cbCertEncoded == cert->cbCertEncoded, in testCertRegisterSystemStore()
2122 CertFreeCertificateContext(cert); in testCertRegisterSystemStore()
2777 PCCERT_CONTEXT cert = NULL; in countCertsInStore() local
2781 cert = CertEnumCertificatesInStore(store, cert); in countCertsInStore()
2782 if (cert) in countCertsInStore()
2784 } while (cert); in countCertsInStore()
2803 const CERT_CONTEXT *cert, *cert2, *cert3; in testEmptyStore() local
2809 cert = CertCreateCertificateContext(X509_ASN_ENCODING, bigCert, sizeof(bigCert)); in testEmptyStore()
2810 ok(cert != NULL, "CertCreateCertificateContext failed\n"); in testEmptyStore()
2811 ok(cert->hCertStore != NULL, "cert->hCertStore == NULL\n"); in testEmptyStore()
2812 if(!cert->hCertStore) { in testEmptyStore()
2813 CertFreeCertificateContext(cert); in testEmptyStore()
2817 test_store_is_empty(cert->hCertStore); in testEmptyStore()
2821 ok(cert2->hCertStore == cert->hCertStore, "Unexpected hCertStore\n"); in testEmptyStore()
2825 res = CertAddCertificateContextToStore(cert->hCertStore, cert2, CERT_STORE_ADD_NEW, &cert3); in testEmptyStore()
2829 ok(cert3->hCertStore == cert->hCertStore, "Unexpected hCertStore\n"); in testEmptyStore()
2831 test_store_is_empty(cert->hCertStore); in testEmptyStore()
2835 ok(cert3->hCertStore == cert->hCertStore, "Unexpected hCertStore\n"); in testEmptyStore()
2854 res = CertCloseStore(cert->hCertStore, CERT_CLOSE_STORE_CHECK_FLAG); in testEmptyStore()
2857 res = CertCloseStore(cert->hCertStore, 0); in testEmptyStore()
2864 ok(crl->hCertStore == cert->hCertStore, "unexpected hCertStore\n"); in testEmptyStore()
2870 ok(ctl->hCertStore == cert->hCertStore, "unexpected hCertStore\n"); in testEmptyStore()
2874 CertFreeCertificateContext(cert); in testEmptyStore()
2879 const CERT_CONTEXT *cert; in testCloseStore() local
2908 sizeof(bigCert), CERT_STORE_ADD_ALWAYS, &cert); in testCloseStore()
2915 res = CertFreeCertificateContext(cert); in testCloseStore()
2951 sizeof(bigCert), CERT_STORE_ADD_ALWAYS, &cert); in testCloseStore()
2962 CertFreeCertificateContext(cert); in testCloseStore()
2977 PCCERT_CONTEXT cert; in test_I_UpdateStore() local
2999 sizeof(bigCert), CERT_STORE_ADD_ALWAYS, &cert); in test_I_UpdateStore()
3028 CertDeleteCertificateFromStore(cert); in test_I_UpdateStore()