Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 270 for authenticating (0.16 sec)

  1. internal/kms/config.go

    	EnvKESClientKey      = "MINIO_KMS_KES_KEY_FILE"     // Path to TLS private key for authenticating to KES with mTLS - usually prefer API keys
    	EnvKESClientCert     = "MINIO_KMS_KES_CERT_FILE"    // Path to TLS certificate for authenticating to KES with mTLS - usually prefer API keys
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            storeTimeRepo == loadTimeRepo
            def loadTimeMetadata = metadataFile.text
            storeTimeMetadata == loadTimeMetadata
        }
    
        def "can publish maven publication metadata to non-authenticating remote repository"() {
            with(server) {
                // or else insecure protocol enforcement is skipped
                useHostname()
                start()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. cmd/signature-v4.go

    	return ErrNone
    }
    
    // doesSignatureMatch - Verify authorization header with calculated header in accordance with
    //   - http://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html
    //
    // returns ErrNone if signature matches.
    func doesSignatureMatch(hashedPayload string, r *http.Request, region string, stype serviceType) APIErrorCode {
    	// Copy request.
    	req := *r
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/simple-oauth2.md

    ### Authenticate
    
    Click the "Authorize" button.
    
    Use the credentials:
    
    User: `johndoe`
    
    Password: `secret`
    
    <img src="/img/tutorial/security/image04.png">
    
    After authenticating in the system, you will see it like:
    
    <img src="/img/tutorial/security/image05.png">
    
    ### Get your own user data
    
    Now use the operation `GET` with the path `/users/me`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/net/smtp/smtp.go

    		return err
    	}
    	if err := c.hello(); err != nil {
    		return err
    	}
    	_, _, err := c.cmd(250, "VRFY %s", addr)
    	return err
    }
    
    // Auth authenticates a client using the provided authentication mechanism.
    // A failed authentication closes the connection.
    // Only servers that advertise the AUTH extension support this function.
    func (c *Client) Auth(a Auth) error {
    	if err := c.hello(); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. pkg/security/security.go

    	Pkcs8Keys bool
    
    	// OutputKeyCertToDir is the directory for output the key and certificate
    	OutputKeyCertToDir string
    
    	// ProvCert is the directory for client to provide the key and certificate to CA server when authenticating
    	// with mTLS. This is not used for workload mTLS communication, and is
    	ProvCert string
    
    	// ClusterID is the cluster where the agent resides.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		if !expectErr {
    			t.Fatalf("authenticate token: %v", err)
    		}
    		if got := err.Error(); c.wantErr != got {
    			t.Fatalf("expected error %q when authenticating token but got %q", c.wantErr, got)
    		}
    		return
    	}
    
    	if expectErr {
    		t.Fatalf("expected error %q when authenticating token but got none", c.wantErr)
    	}
    	if !ok {
    		if !c.wantSkip {
    			// We don't have any cases where we return (nil, false, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/fetch.go

    may also be downloaded from the checksum database depending on the values of
    GOSUMDB, GOPRIVATE, and GONOSUMDB.
    
    For details, see https://golang.org/ref/mod#authenticating.
    `,
    }
    
    var HelpPrivate = &base.Command{
    	UsageLine: "private",
    	Short:     "configuration for downloading non-public code",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    	jwtRule := &v1beta1.JWTRule{}
    	err := json.Unmarshal([]byte(args.JwtRule), jwtRule)
    	if err != nil {
    		return nil, fmt.Errorf("failed to unmarshal JWT rule: %v", err)
    	}
    	log.Infof("Istiod authenticating using JWTRule: %v", jwtRule)
    	jwtAuthn, err := authenticate.NewJwtAuthenticator(jwtRule, meshWatcher)
    	if err != nil {
    		return nil, fmt.Errorf("failed to create the JWT authenticator: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/authentication.go

    )
    
    // MutualTLSMode is the mutual TLS mode specified by authentication policy.
    type MutualTLSMode int
    
    const (
    	// MTLSUnknown is used to indicate the variable hasn't been initialized correctly (with the authentication policy).
    	MTLSUnknown MutualTLSMode = iota
    
    	// MTLSDisable if authentication policy disable mTLS.
    	MTLSDisable
    
    	// MTLSPermissive if authentication policy enable mTLS in permissive mode.
    	MTLSPermissive
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top