Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 310 for Credential (0.19 sec)

  1. cmd/signature-v4.go

    func doesPolicySignatureV4Match(formValues http.Header) (auth.Credentials, APIErrorCode) {
    	// Server region.
    	region := globalSite.Region()
    
    	// Parse credential tag.
    	credHeader, s3Err := parseCredentialHeader("Credential="+formValues.Get(xhttp.AmzCredential), region, serviceS3)
    	if s3Err != ErrNone {
    		return auth.Credentials{}, s3Err
    	}
    
    	r := &http.Request{Header: formValues}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. cmd/signature-v4-utils_test.go

    	}{
    		{"shastring", "", "shastring"},
    		{emptySHA256, "", emptySHA256},
    		{"", "", emptySHA256},
    		{"", "X-Amz-Credential=random", unsignedPayload},
    		{"", "X-Amz-Credential=random&X-Amz-Content-Sha256=" + unsignedPayload, unsignedPayload},
    		{"", "X-Amz-Credential=random&X-Amz-Content-Sha256=shastring", "shastring"},
    	}
    
    	for i, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. pilot/pkg/security/model/authentication_test.go

    			name:                   "test-credential",
    			expected: &auth.SdsSecretConfig{
    				Name:      credentials.ToResourceName("test-credential"),
    				SdsConfig: SDSAdsConfig,
    			},
    		},
    		{
    			credentialSocketExists: false,
    			name:                   "test-credential-no-prefix-with-socket",
    			expected: &auth.SdsSecretConfig{
    				Name:      credentials.ToResourceName("test-credential-no-prefix-with-socket"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. pkg/security/security.go

    	// CredentialNameSocketPath is the well-known path to the Unix Domain Socket for Credential Name.
    	CredentialNameSocketPath = "./var/run/secrets/credential-uds/socket"
    
    	// CredentialMetaDataName is the name in node meta data.
    	CredentialMetaDataName = "credential"
    
    	// SDSExternalClusterName is the name of the cluster for external SDS connections which is defined via CredentialNameSocketPath
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/ingressgateway_k8s_settings.golden.yaml

            volumeMounts:
            - mountPath: /var/run/secrets/workload-spiffe-uds
              name: workload-socket
            - mountPath: /var/run/secrets/credential-uds
              name: credential-socket
            - mountPath: /var/run/secrets/workload-spiffe-credentials
              name: workload-certs
            - mountPath: /etc/istio/proxy
              name: istio-envoy
            - mountPath: /etc/istio/config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. src/syscall/exec_linux_test.go

    		}}
    		cmd.SysProcAttr.GidMappings = []syscall.SysProcIDMap{{
    			ContainerID: int(nobody),
    			HostID:      gid,
    			Size:        int(1),
    		}}
    
    		// Set credentials to run as user and group nobody.
    		cmd.SysProcAttr.Credential = &syscall.Credential{
    			Uid: nobody,
    			Gid: nobody,
    		}
    	}
    	if err := cmd.Run(); err != nil {
    		if testenv.SyscallIsNotSupported(err) {
    			t.Skipf("skipping: %v: %v", cmd, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/validation_test.go

    				CredentialName:    "credential",
    				ClientCertificate: "",
    				PrivateKey:        "",
    				CaCertificates:    "ca",
    			},
    			valid: false,
    		},
    		{
    			name: "MUTUAL: Credential Name set correctly",
    			tls: &networking.ClientTLSSettings{
    				Mode:              networking.ClientTLSSettings_MUTUAL,
    				CredentialName:    "some credential",
    				ClientCertificate: "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              volumeMounts:
              - name: workload-socket
                mountPath: /var/run/secrets/workload-spiffe-uds
              - name: credential-socket
                mountPath: /var/run/secrets/credential-uds
              - name: workload-certs
                mountPath: /var/run/secrets/workload-spiffe-credentials
              - name: istio-envoy
                mountPath: /etc/istio/proxy
              - name: config-volume
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. cmd/auth-handler_test.go

    	testCases := []struct {
    		inputQueryKey   string
    		inputQueryValue string
    		expectedResult  bool
    	}{
    		// Test case - 1.
    		// Test case with query key ""X-Amz-Credential" set.
    		{"", "", false},
    		// Test case - 2.
    		{"X-Amz-Credential", "", true},
    		// Test case - 3.
    		{"X-Amz-Content-Sha256", "", false},
    	}
    
    	for i, testCase := range testCases {
    		// creating an input HTTP request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              volumeMounts:
              - name: workload-socket
                mountPath: /var/run/secrets/workload-spiffe-uds
              - name: credential-socket
                mountPath: /var/run/secrets/credential-uds
              - name: workload-certs
                mountPath: /var/run/secrets/workload-spiffe-credentials
              - name: istio-envoy
                mountPath: /etc/istio/proxy
              - name: config-volume
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top