Home
last modified time | relevance | path

Searched refs:authOptions (Results 1 – 25 of 250) sorted by relevance

12345678910

/dports/sysutils/docker-machine/machine-0.16.2/libmachine/cert/
H A Dbootstrap.go14 caCertPath := authOptions.CaCertPath
15 caPrivateKeyPath := authOptions.CaPrivateKeyPath
32 certDir := authOptions.CertDir
33 caCertPath := authOptions.CaCertPath
34 caPrivateKeyPath := authOptions.CaPrivateKeyPath
35 clientCertPath := authOptions.ClientCertPath
36 clientKeyPath := authOptions.ClientKeyPath
75 certDir := authOptions.CertDir
76 caCertPath := authOptions.CaCertPath
77 clientCertPath := authOptions.ClientCertPath
[all …]
H A Dcert.go34 ReadTLSConfig(addr string, authOptions *auth.Options) (*tls.Config, error)
35 ValidateCertificate(addr string, authOptions *auth.Options) (bool, error)
52 func ValidateCertificate(addr string, authOptions *auth.Options) (bool, error) {
53 return defaultGenerator.ValidateCertificate(addr, authOptions)
56 func ReadTLSConfig(addr string, authOptions *auth.Options) (*tls.Config, error) {
57 return defaultGenerator.ReadTLSConfig(addr, authOptions)
227 caCertPath := authOptions.CaCertPath
228 clientCertPath := authOptions.ClientCertPath
229 clientKeyPath := authOptions.ClientKeyPath
253 func (xcg *X509CertGenerator) ValidateCertificate(addr string, authOptions *auth.Options) (bool, er…
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/libmachine/provision/
H A Dutils.go48 authOptions := p.GetAuthOptions()
56 return authOptions
66 authOptions := p.GetAuthOptions()
78 …if err := mcnutils.CopyFile(authOptions.CaCertPath, filepath.Join(authOptions.StorePath, "ca.pem")…
86 …if err := mcnutils.CopyFile(authOptions.ClientKeyPath, filepath.Join(authOptions.StorePath, "key.p…
93 authOptions.ServerCertPath,
94 authOptions.CaCertPath,
95 authOptions.CaPrivateKeyPath,
104 CertFile: authOptions.ServerCertPath,
105 KeyFile: authOptions.ServerKeyPath,
[all …]
H A Dconfigure_swarm.go17 func configureSwarm(p Provisioner, swarmOptions swarm.Options, authOptions auth.Options) error {
55 AuthOption: &authOptions,
62 authOptions.CaCertRemotePath,
63 authOptions.ServerCertRemotePath,
64 authOptions.ServerKeyRemotePath,
/dports/sysutils/docker-machine/machine-0.16.2/libmachine/provision/
H A Dutils.go48 authOptions := p.GetAuthOptions()
56 return authOptions
66 authOptions := p.GetAuthOptions()
78 …if err := mcnutils.CopyFile(authOptions.CaCertPath, filepath.Join(authOptions.StorePath, "ca.pem")…
86 …if err := mcnutils.CopyFile(authOptions.ClientKeyPath, filepath.Join(authOptions.StorePath, "key.p…
93 authOptions.ServerCertPath,
94 authOptions.CaCertPath,
95 authOptions.CaPrivateKeyPath,
104 CertFile: authOptions.ServerCertPath,
105 KeyFile: authOptions.ServerKeyPath,
[all …]
H A Dconfigure_swarm.go17 func configureSwarm(p Provisioner, swarmOptions swarm.Options, authOptions auth.Options) error {
55 AuthOption: &authOptions,
62 authOptions.CaCertRemotePath,
63 authOptions.ServerCertRemotePath,
64 authOptions.ServerKeyRemotePath,
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/thirdparty/ch/boye/httpclientandroidlib/auth/
H A DAuthState.java55 private Queue<AuthOption> authOptions; field in AuthState
69 this.authOptions = null; in reset()
116 this.authOptions = null; in update()
125 return this.authOptions; in getAuthOptions()
135 return this.authOptions != null && !this.authOptions.isEmpty(); in hasAuthOptions()
145 public void update(final Queue<AuthOption> authOptions) { in update() argument
146 Args.notEmpty(authOptions, "Queue of auth options"); in update()
147 this.authOptions = authOptions; in update()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/thirdparty/ch/boye/httpclientandroidlib/auth/
H A DAuthState.java55 private Queue<AuthOption> authOptions; field in AuthState
69 this.authOptions = null; in reset()
116 this.authOptions = null; in update()
125 return this.authOptions; in getAuthOptions()
135 return this.authOptions != null && !this.authOptions.isEmpty(); in hasAuthOptions()
145 public void update(final Queue<AuthOption> authOptions) { in update() argument
146 Args.notEmpty(authOptions, "Queue of auth options"); in update()
147 this.authOptions = authOptions; in update()
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/libmachine/cert/
H A Dbootstrap.go13 func BootstrapCertificates(authOptions *auth.Options) error {
14 certDir := authOptions.CertDir
15 caCertPath := authOptions.CaCertPath
16 caPrivateKeyPath := authOptions.CaPrivateKeyPath
17 clientCertPath := authOptions.ClientCertPath
18 clientKeyPath := authOptions.ClientKeyPath
H A Dcert.go34 ReadTLSConfig(addr string, authOptions *auth.Options) (*tls.Config, error)
35 ValidateCertificate(addr string, authOptions *auth.Options) (bool, error)
52 func ValidateCertificate(addr string, authOptions *auth.Options) (bool, error) {
53 return defaultGenerator.ValidateCertificate(addr, authOptions)
56 func ReadTLSConfig(addr string, authOptions *auth.Options) (*tls.Config, error) {
57 return defaultGenerator.ReadTLSConfig(addr, authOptions)
227 caCertPath := authOptions.CaCertPath
228 clientCertPath := authOptions.ClientCertPath
229 clientKeyPath := authOptions.ClientKeyPath
253 func (xcg *X509CertGenerator) ValidateCertificate(addr string, authOptions *auth.Options) (bool, er…
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/libmachine/check/
H A Dcheck.go37 Check(*host.Host, bool) (dockerHost string, authOptions *auth.Options, err error)
61 authOptions := h.AuthOptions()
63 if err := checkCert(u.Host, authOptions); err != nil {
76 return dockerURL, authOptions, nil
79 func checkCert(hostURL string, authOptions *auth.Options) error {
80 valid, err := cert.ValidateCertificate(hostURL, authOptions)
H A Dcheck_test.go31 func (fcg FakeCertGenerator) ValidateCertificate(addr string, authOptions *auth.Options) (bool, err…
35 func (fcg FakeCertGenerator) ReadTLSConfig(addr string, authOptions *auth.Options) (*tls.Config, er…
44 authOptions *auth.Options
57 err := checkCert(c.hostURL, c.authOptions)
/dports/sysutils/docker-machine/machine-0.16.2/libmachine/check/
H A Dcheck.go37 Check(*host.Host, bool) (dockerHost string, authOptions *auth.Options, err error)
61 authOptions := h.AuthOptions()
63 if err := checkCert(u.Host, authOptions); err != nil {
76 return dockerURL, authOptions, nil
79 func checkCert(hostURL string, authOptions *auth.Options) error {
80 valid, err := cert.ValidateCertificate(hostURL, authOptions)
H A Dcheck_test.go31 func (fcg FakeCertGenerator) ValidateCertificate(addr string, authOptions *auth.Options) (bool, err…
35 func (fcg FakeCertGenerator) ReadTLSConfig(addr string, authOptions *auth.Options) (*tls.Config, er…
44 authOptions *auth.Options
57 err := checkCert(c.hostURL, c.authOptions)
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/thirdparty/ch/boye/httpclientandroidlib/impl/auth/
H A DHttpAuthenticator.java154 … final Queue<AuthOption> authOptions = authStrategy.select(challenges, host, response, context); in handleAuthChallenge() local
155 if (authOptions != null && !authOptions.isEmpty()) { in handleAuthChallenge()
157 this.log.debug("Selected authentication options: " + authOptions); in handleAuthChallenge()
160 authState.update(authOptions); in handleAuthChallenge()
190 final Queue<AuthOption> authOptions = authState.getAuthOptions(); in generateAuthResponse() local
191 if (authOptions != null) { in generateAuthResponse()
192 while (!authOptions.isEmpty()) { in generateAuthResponse()
193 final AuthOption authOption = authOptions.remove(); in generateAuthResponse()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/thirdparty/ch/boye/httpclientandroidlib/impl/auth/
H A DHttpAuthenticator.java154 … final Queue<AuthOption> authOptions = authStrategy.select(challenges, host, response, context); in handleAuthChallenge() local
155 if (authOptions != null && !authOptions.isEmpty()) { in handleAuthChallenge()
157 this.log.debug("Selected authentication options: " + authOptions); in handleAuthChallenge()
160 authState.update(authOptions); in handleAuthChallenge()
190 final Queue<AuthOption> authOptions = authState.getAuthOptions(); in generateAuthResponse() local
191 if (authOptions != null) { in generateAuthResponse()
192 while (!authOptions.isEmpty()) { in generateAuthResponse()
193 final AuthOption authOption = authOptions.remove(); in generateAuthResponse()
/dports/security/lego/lego-4.5.3/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/identity/v2/
H A Dtoken_test.go22 authOptions, err := openstack.AuthOptionsFromEnv()
25 result := tokens.Create(client, authOptions)
46 authOptions, err := openstack.AuthOptionsFromEnv()
49 result := tokens.Create(client, authOptions)
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/identity/v2/
H A Dtoken_test.go22 authOptions, err := openstack.AuthOptionsFromEnv()
25 result := tokens.Create(client, authOptions)
46 authOptions, err := openstack.AuthOptionsFromEnv()
49 result := tokens.Create(client, authOptions)
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/hashicorp/consul/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/identity/v2/
H A Dtoken_test.go22 authOptions, err := openstack.AuthOptionsFromEnv()
25 result := tokens.Create(client, authOptions)
46 authOptions, err := openstack.AuthOptionsFromEnv()
49 result := tokens.Create(client, authOptions)
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/identity/v2/
H A Dtoken_test.go22 authOptions, err := openstack.AuthOptionsFromEnv()
25 result := tokens.Create(client, authOptions)
46 authOptions, err := openstack.AuthOptionsFromEnv()
49 result := tokens.Create(client, authOptions)
/dports/www/fabio/fabio-1.5.14/vendor/github.com/hashicorp/consul/consul-1.4.2/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/identity/v2/
H A Dtoken_test.go22 authOptions, err := openstack.AuthOptionsFromEnv()
25 result := tokens.Create(client, authOptions)
46 authOptions, err := openstack.AuthOptionsFromEnv()
49 result := tokens.Create(client, authOptions)
/dports/security/vault/vault-1.8.2/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/identity/v2/
H A Dtoken_test.go22 authOptions, err := openstack.AuthOptionsFromEnv()
25 result := tokens.Create(client, authOptions)
46 authOptions, err := openstack.AuthOptionsFromEnv()
49 result := tokens.Create(client, authOptions)
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/identity/v2/
H A Dtoken_test.go22 authOptions, err := openstack.AuthOptionsFromEnv()
25 result := tokens.Create(client, authOptions)
46 authOptions, err := openstack.AuthOptionsFromEnv()
49 result := tokens.Create(client, authOptions)
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/identity/v2/
H A Dtoken_test.go22 authOptions, err := openstack.AuthOptionsFromEnv()
25 result := tokens.Create(client, authOptions)
46 authOptions, err := openstack.AuthOptionsFromEnv()
49 result := tokens.Create(client, authOptions)
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/hashicorp/consul/vendor/github.com/gophercloud/gophercloud/acceptance/openstack/identity/v2/
H A Dtoken_test.go22 authOptions, err := openstack.AuthOptionsFromEnv()
25 result := tokens.Create(client, authOptions)
46 authOptions, err := openstack.AuthOptionsFromEnv()
49 result := tokens.Create(client, authOptions)

12345678910