/dports/security/py-certbot/certbot-1.22.0/certbot/ |
H A D | ocsp.py | 63 return self.ocsp_revoked_by_paths(cert.cert_path, cert.chain_path) 65 def ocsp_revoked_by_paths(self, cert_path: str, chain_path: str, timeout: int = 10) -> bool: 91 return self._check_ocsp_openssl_bin(cert_path, chain_path, host, url, timeout) 92 return _check_ocsp_cryptography(cert_path, chain_path, url, timeout) 94 def _check_ocsp_openssl_bin(self, cert_path: str, chain_path: str, 115 "-issuer", chain_path, 117 "-CAfile", chain_path, 118 "-verify_other", chain_path, 162 def _check_ocsp_cryptography(cert_path: str, chain_path: str, url: str, timeout: int) -> bool: 164 with open(chain_path, 'rb') as file_handler:
|
H A D | interfaces.py | 263 chain_path: str, fullchain_path: str) -> None: 396 def chain_path(self) -> str: member in RenewableCert
|
H A D | crypto_util.py | 361 with open(renewable_cert.chain_path, 'rb') as chain_file: 432 with open(renewable_cert.chain_path) as chain_file:
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/test/data/cast_certificate/certificates/ |
H A D | generate_rsa_device_certs.py | 45 chain_path ='rsa%d_device_cert.pem' % leaf_key_size 46 common.write_chain(chain_description, chain, chain_path) 52 '../certificates/' + chain_path)
|
/dports/security/py-certbot/certbot-1.22.0/certbot/_internal/ |
H A D | main.py | 648 cert_path=cert_path, chain_path=chain_path, 965 le_client.enhance_config(domains, path_provider.chain_path) 1040 if not config.chain_path: 1041 config.namespace.chain_path = lineage.chain_path 1148 if not config.chain_path: 1149 config.chain_path = lineage.chain_path 1152 le_client.enhance_config(domains, config.chain_path, redirect_default=False) 1412 cert_path, chain_path, fullchain_path = le_client.save_certificate( 1414 os.path.normpath(config.chain_path), os.path.normpath(config.fullchain_path)) 1415 return cert_path, chain_path, fullchain_path [all …]
|
H A D | client.py | 534 cert_path: str, chain_path: str, fullchain_path: str 551 for path in cert_path, chain_path, fullchain_path: 561 chain_file, abs_chain_path = _open_pem_file('chain_path', chain_path) 570 chain_path: str, fullchain_path: str) -> None: 584 chain_path = None if chain_path is None else os.path.abspath(chain_path) 594 chain_path=chain_path, 607 def enhance_config(self, domains: List[str], chain_path: str, 629 ("staple", "staple-ocsp", chain_path),
|
H A D | storage.py | 511 def chain_path(self) -> str: member in RenewableCert 953 chain_path = self.version("chain", version) 959 chain_path)
|
/dports/science/py-OpenMC/openmc-0.12.2/tests/unit_tests/ |
H A D | test_data_misc.py | 40 chain_path = Path(__file__).parents[1] / "chain_simple.xml" 41 dep_lib.register_file(chain_path) 47 assert dep_dict['path'] == str(chain_path)
|
/dports/science/openmc/openmc-0.12.2/tests/unit_tests/ |
H A D | test_data_misc.py | 40 chain_path = Path(__file__).parents[1] / "chain_simple.xml" 41 dep_lib.register_file(chain_path) 47 assert dep_dict['path'] == str(chain_path)
|
/dports/security/py-certbot-nginx/certbot-nginx-1.22.0/certbot_nginx/_internal/ |
H A D | configurator.py | 214 chain_path=None, fullchain_path=None): argument 233 self._deploy_cert(vhost, cert_path, key_path, chain_path, fullchain_path) 237 …def _deploy_cert(self, vhost, cert_path, key_path, chain_path, fullchain_path): # pylint: disable… argument 908 def _enable_ocsp_stapling(self, domain, chain_path): argument 918 self._enable_ocsp_stapling_single(vhost, chain_path) 920 def _enable_ocsp_stapling_single(self, vhost, chain_path): argument 932 if chain_path is None: 939 ['\n ', 'ssl_trusted_certificate', ' ', chain_path], 953 self.save_notes += "\tssl_trusted_certificate {0}\n".format(chain_path)
|
/dports/security/py-certbot/certbot-1.22.0/tests/ |
H A D | ocsp_test.py | 77 cert_obj.chain_path = "y" 143 self.chain_path = test_util.vector_path('ocsp_issuer_certificate.pem') 146 self.cert_obj.chain_path = self.chain_path 160 … mock_check.assert_called_once_with(self.cert_path, self.chain_path, 'http://example.com', 10)
|
H A D | main_test.py | 753 chain_path=test_util.temp_join('chain'), 771 chain_path=test_util.temp_join('chain'), 781 self.assertEqual(call_config.chain_path, test_util.temp_join('chain')) 807 chain_path=test_util.temp_join('chain'), 981 self.assertEqual(config.chain_path, os.path.abspath(chain)) 1092 chain_path = os.path.normpath(os.path.join(self.config.config_dir, 1094 mock_lineage = mock.MagicMock(cert=cert_path, fullchain=chain_path, 1423 chain_path = os.path.normpath(os.path.join( 1428 CSR, cert_path, chain_path, full_path).split() 1438 certr, chain, cert_path, chain_path, full_path) [all …]
|
H A D | crypto_util_test.py | 262 self.renewable_cert.chain_path = SS_CERT_PATH 267 self.bad_renewable_cert.chain_path = SS_CERT_PATH 300 renewable_cert.chain_path = P256_CERT_PATH
|
H A D | client_test.py | 536 cert_path, chain_path, fullchain_path = self.client.save_certificate( 542 self.assertEqual(os.path.dirname(chain_path), 551 with open(chain_path, "rb") as chain_file: 569 chain_path=os.path.abspath("chain"),
|
/dports/security/py-certbot/certbot-1.22.0/certbot/_internal/plugins/ |
H A D | null.py | 36 chain_path: str, fullchain_path: str) -> None:
|
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/cert/internal/ |
H A D | test_helpers.cc | 221 std::string chain_path = file_path_ascii.substr(0, slash) + "/" + value; in ReadVerifyCertChainTestFromFile() local 223 ReadCertChainFromFile(chain_path, &test->chain); in ReadVerifyCertChainTestFromFile()
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/cert/internal/ |
H A D | test_helpers.cc | 222 std::string chain_path = file_path_ascii.substr(0, slash) + "/" + value; in ReadVerifyCertChainTestFromFile() local 224 ReadCertChainFromFile(chain_path, &test->chain); in ReadVerifyCertChainTestFromFile()
|
/dports/security/py-certbot/certbot-1.22.0/certbot/tests/testdata/ |
H A D | sample-renewal-ancient.conf | 60 chain_path = /home/ubuntu/letsencrypt/chain.pem
|
H A D | sample-renewal-ec.conf | 64 chain_path = /home/ubuntu/letsencrypt/chain.pem
|
H A D | sample-renewal.conf | 61 chain_path = /home/ubuntu/letsencrypt/chain.pem
|
/dports/security/py-certbot-apache/certbot-apache-1.22.0/certbot_apache/_internal/ |
H A D | configurator.py | 492 chain_path=None, fullchain_path=None): argument 511 self._deploy_cert(vhost, cert_path, key_path, chain_path, fullchain_path) 616 def _deploy_cert(self, vhost, cert_path, key_path, chain_path, fullchain_path): argument 642 if chain_path is not None: 648 if self.version < (2, 4, 8) or (chain_path and not fullchain_path): 654 if chain_path is not None: 656 "SSLCertificateChainFile", chain_path) 679 if chain_path is not None: 680 self.save_notes += "\tSSLCertificateChainFile %s\n" % chain_path
|
/dports/security/py-certbot/certbot-1.22.0/certbot/tests/ |
H A D | util.py | 58 def deploy_cert(self, domain: str, cert_path: str, key_path: str, chain_path: str, 456 self.config.namespace.chain_path = constants.CLI_DEFAULTS['auth_chain_path']
|
/dports/graphics/gegl/gegl-0.4.34/bin/ |
H A D | ui.h | 68 char *chain_path; /* .gegl/basename/chain - unless the src_path member
|
H A D | ui-core.c | 6028 if (o->chain_path) in load_path_inner() 6029 g_free (o->chain_path); in load_path_inner() 6030 o->chain_path = path; in load_path_inner() 6037 if (o->chain_path) in load_path_inner() 6038 g_free (o->chain_path); in load_path_inner() 6041 o->chain_path = g_strdup (path); in load_path_inner() 6046 o->chain_path = g_strdup_printf ("%sl", path); in load_path_inner() 6054 o->chain_path = ui_suffix_path (path); in load_path_inner() 6060 if (access (o->chain_path, F_OK) != -1) in load_path_inner() 6063 if (!strstr (o->chain_path, ".zn.fs")) in load_path_inner() [all …]
|
/dports/devel/mercurial/mercurial-6.0/tests/ |
H A D | test-paths.t | 365 > chain_path=path://other_default 373 $ hg pull chain_path 390 $ hg pull chain_path
|