Home
last modified time | relevance | path

Searched refs:serverCertFile (Results 1 – 25 of 26) sorted by relevance

12

/dports/security/certmgr/certmgr-3.0.3/vendor/github.com/cloudflare/cfssl/cfssl-2001f384ec4f/ocsp/
H A Docsp_test.go14 serverCertFile = "testdata/ca.pem" const
33 _, err = NewSignerFromFile(serverCertFile, "", "", dur)
38 _, err = NewSignerFromFile(serverCertFile, otherCertFile, "", dur)
49 _, err = NewSignerFromFile(serverCertFile, brokenServerCert, serverKeyFile, dur)
54 _, err = NewSignerFromFile(serverCertFile, otherCertFile, brokenServerKey, dur)
60 _, err = NewSignerFromFile(serverCertFile, otherCertFile, serverKeyFile, dur)
87 s, err := NewSignerFromFile(serverCertFile, serverCertFile, serverKeyFile, dur)
109 s, err := NewSignerFromFile(serverCertFile, otherCertFile, serverKeyFile, dur)
153 s, err := NewSignerFromFile(serverCertFile, serverCertFile, serverKeyFile, dur)
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/dskit/crypto/tls/test/
H A Dtls_integration_test.go209 cfg.HTTPTLSConfig.TLSCertPath = certs.serverCertFile
211 cfg.GRPCTLSConfig.TLSCertPath = certs.serverCertFile
335 cfg.HTTPTLSConfig.TLSCertPath = certs.serverCertFile
339 cfg.GRPCTLSConfig.TLSCertPath = certs.serverCertFile
410 cfg.HTTPTLSConfig.TLSCertPath = certs.serverCertFile
414 cfg.GRPCTLSConfig.TLSCertPath = certs.serverCertFile
458 serverCertFile := filepath.Join(testCADir, "server.crt")
466 serverCertFile,
536 serverCertFile: serverCertFile,
551 serverCertFile string member
/dports/www/mod_php81/php-8.1.1/ext/openssl/tests/
H A Dbug69215.phpt13 $serverCertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug69215-server.pem.tmp';
31 $serverCode = sprintf($serverCode, $serverCertFile, $caCertFile);
54 $certificateGenerator->saveNewCertAsFileWithKey('bug69215-server', $serverCertFile);
/dports/lang/php81/php-8.1.1/ext/openssl/tests/
H A Dbug69215.phpt13 $serverCertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug69215-server.pem.tmp';
31 $serverCode = sprintf($serverCode, $serverCertFile, $caCertFile);
54 $certificateGenerator->saveNewCertAsFileWithKey('bug69215-server', $serverCertFile);
/dports/lang/php80/php-8.0.15/ext/openssl/tests/
H A Dbug69215.phpt12 $serverCertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug69215-server.pem.tmp';
30 $serverCode = sprintf($serverCode, $serverCertFile, $caCertFile);
53 $certificateGenerator->saveNewCertAsFileWithKey('bug69215-server', $serverCertFile);
/dports/lang/php74/php-7.4.27/ext/openssl/tests/
H A Dbug69215.phpt12 $serverCertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug69215-server.pem.tmp';
30 $serverCode = sprintf($serverCode, $serverCertFile, $caCertFile);
53 $certificateGenerator->saveNewCertAsFileWithKey('bug69215-server', $serverCertFile);
/dports/security/php81-openssl/php-8.1.1/ext/openssl/tests/
H A Dbug69215.phpt13 $serverCertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug69215-server.pem.tmp';
31 $serverCode = sprintf($serverCode, $serverCertFile, $caCertFile);
54 $certificateGenerator->saveNewCertAsFileWithKey('bug69215-server', $serverCertFile);
/dports/security/php74-openssl/php-7.4.27/ext/openssl/tests/
H A Dbug69215.phpt12 $serverCertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug69215-server.pem.tmp';
30 $serverCode = sprintf($serverCode, $serverCertFile, $caCertFile);
53 $certificateGenerator->saveNewCertAsFileWithKey('bug69215-server', $serverCertFile);
/dports/security/php80-openssl/php-8.0.15/ext/openssl/tests/
H A Dbug69215.phpt12 $serverCertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug69215-server.pem.tmp';
30 $serverCode = sprintf($serverCode, $serverCertFile, $caCertFile);
53 $certificateGenerator->saveNewCertAsFileWithKey('bug69215-server', $serverCertFile);
/dports/www/mod_php80/php-8.0.15/ext/openssl/tests/
H A Dbug69215.phpt12 $serverCertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug69215-server.pem.tmp';
30 $serverCode = sprintf($serverCode, $serverCertFile, $caCertFile);
53 $certificateGenerator->saveNewCertAsFileWithKey('bug69215-server', $serverCertFile);
/dports/www/mod_php74/php-7.4.27/ext/openssl/tests/
H A Dbug69215.phpt12 $serverCertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug69215-server.pem.tmp';
30 $serverCode = sprintf($serverCode, $serverCertFile, $caCertFile);
53 $certificateGenerator->saveNewCertAsFileWithKey('bug69215-server', $serverCertFile);
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/integration/
H A Dutil.go63 "-server.grpc-tls-cert-path": filepath.Join(e2e.ContainerSharedDir, serverCertFile),
72 "-server.http-tls-cert-path": filepath.Join(e2e.ContainerSharedDir, serverCertFile),
H A Dconfigs.go33 serverCertFile = "certs/server.crt" const
H A Dquery_frontend_test.go147 filepath.Join(s.SharedDir(), serverCertFile),
/dports/sysutils/helm/helm-3.5.2/vendor/k8s.io/apiserver/pkg/server/options/
H A Dserving.go245 serverCertFile, serverKeyFile := s.ServerCert.CertKey.CertFile, s.ServerCert.CertKey.KeyFile
247 if len(serverCertFile) != 0 || len(serverKeyFile) != 0 {
249 …ynamiccertificates.NewDynamicServingContentFromFiles("serving-cert", serverCertFile, serverKeyFile)
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/apiserver/pkg/server/options/
H A Dserving.go261 serverCertFile, serverKeyFile := s.ServerCert.CertKey.CertFile, s.ServerCert.CertKey.KeyFile
263 if len(serverCertFile) != 0 || len(serverKeyFile) != 0 {
265 …ynamiccertificates.NewDynamicServingContentFromFiles("serving-cert", serverCertFile, serverKeyFile)
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/clients/pkg/promtail/targets/syslog/
H A Dsyslogtarget_test.go385 serverCertFile, err := createTempFile(serverCert)
389 defer os.Remove(serverCertFile.Name())
409 CertFile: serverCertFile.Name(),
493 serverCertFile, err := createTempFile(serverCert)
497 defer os.Remove(serverCertFile.Name())
535 CertFile: serverCertFile.Name(),
/dports/security/certmgr/certmgr-3.0.3/vendor/github.com/cloudflare/cfssl/cfssl-2001f384ec4f/crl/
H A Dcrl_test.go10 serverCertFile = "testdata/ca.pem" const
/dports/net/grpcox/grpcox-1.0.0/vendor/github.com/fullstorydev/grpcurl/
H A Dgrpcurl.go519 func ServerTransportCredentials(cacertFile, serverCertFile, serverKeyFile string, requireClientCert… argument
526 certificate, err := tls.LoadX509KeyPair(serverCertFile, serverKeyFile)
/dports/net/grpcui/grpcui-1.1.0/vendor/github.com/fullstorydev/grpcurl/
H A Dgrpcurl.go551 func ServerTransportCredentials(cacertFile, serverCertFile, serverKeyFile string, requireClientCert… argument
558 certificate, err := tls.LoadX509KeyPair(serverCertFile, serverKeyFile)
/dports/www/gitea/gitea-1.16.5/vendor/github.com/fullstorydev/grpcurl/
H A Dgrpcurl.go553 func ServerTransportCredentials(cacertFile, serverCertFile, serverKeyFile string, requireClientCert… argument
560 certificate, err := tls.LoadX509KeyPair(serverCertFile, serverKeyFile)
/dports/net/grpcurl/grpcurl-1.8.5/
H A Dgrpcurl.go567 func ServerTransportCredentials(cacertFile, serverCertFile, serverKeyFile string, requireClientCert… argument
574 certificate, err := tls.LoadX509KeyPair(serverCertFile, serverKeyFile)
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/go-openapi/runtime/client/
H A Druntime_test.go204 serverCertFile := "../fixtures/certs/mycert1.crt"
208 serverCertFile,
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/go-openapi/runtime/client/
H A Druntime_test.go260 serverCertFile := "../fixtures/certs/mycert1.crt"
264 serverCertFile,
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/go-openapi/runtime/client/
H A Druntime_test.go260 serverCertFile := "../fixtures/certs/mycert1.crt"
264 serverCertFile,

12