Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 388 for Decref (0.11 sec)

  1. src/crypto/tls/key_schedule_test.go

    	}
    	tests := []struct {
    		name string
    		args args
    		want []byte
    	}{
    		{
    			`extract secret "early"`,
    			args{
    				nil,
    				nil,
    			},
    			parseVector(`secret (32 octets):  33 ad 0a 1c 60 7e c0 3b 09 e6 cd 98 93 68 0c
    			e2 10 ad f3 00 aa 1f 26 60 e1 b2 2e 10 f1 70 f9 2a`),
    		},
    		{
    			`extract secret "master"`,
    			args{
    				nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_dependencies/test_tutorial012_an_py39.py

            "/items/", headers={"X-Token": "fake-super-secret-token", "X-Key": "invalid"}
        )
        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "X-Key header invalid"}
    
    
    @needs_py39
    def test_get_invalid_second_header_users(client: TestClient):
        response = client.get(
            "/users/", headers={"X-Token": "fake-super-secret-token", "X-Key": "invalid"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. helm/minio/values.yaml

      ## MINIO_SUBNET_LICENSE: "License key obtained from https://subnet.min.io"
      ## MINIO_BROWSER: "off"
    
    ## The name of a secret in the same kubernetes namespace which contain secret values
    ## This can be useful for LDAP password, etc
    ## The key in the secret must be 'config.env'
    ##
    extraSecret: ~
    
    ## OpenID Identity Management
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/crypto/tls/key_schedule.go

    	}
    	out := make([]byte, length)
    	n, err := hkdf.Expand(c.hash.New, secret, hkdfLabelBytes).Read(out)
    	if err != nil || n != length {
    		panic("tls: HKDF-Expand-Label invocation failed unexpectedly")
    	}
    	return out
    }
    
    // deriveSecret implements Derive-Secret from RFC 8446, Section 7.1.
    func (c *cipherSuiteTLS13) deriveSecret(secret []byte, label string, transcript hash.Hash) []byte {
    	if transcript == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. security/pkg/k8s/chiron/utils_test.go

    			secretName:       "mock-secret",
    			secretNameSpace:  "mock-secret-namespace",
    			expectFail:       false,
    		},
    	}
    
    	for tcName, tc := range testCases {
    		t.Run(tcName, func(t *testing.T) {
    			client := fake.NewSimpleClientset()
    			csr := &cert.CertificateSigningRequest{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "domain-cluster.local-ns--secret-mock-secret",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tests/test_security_oauth2.py

        response = client.post(
            "/login",
            data={"username": "johndoe", "password": "secret", "grant_type": "password"},
        )
        assert response.status_code == 200
        assert response.json() == {
            "grant_type": "password",
            "username": "johndoe",
            "password": "secret",
            "scopes": [],
            "client_id": None,
            "client_secret": None,
        }
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. tests/test_security_oauth2_optional_description.py

        response = client.post(
            "/login",
            data={"username": "johndoe", "password": "secret", "grant_type": "password"},
        )
        assert response.status_code == 200, response.text
        assert response.json() == {
            "grant_type": "password",
            "username": "johndoe",
            "password": "secret",
            "scopes": [],
            "client_id": None,
            "client_secret": None,
        }
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/extension/wasmplugin.go

    	// Find the pull secret resource name from wasm vm env variables.
    	// The Wasm extension config should already have a `ISTIO_META_WASM_IMAGE_PULL_SECRET` env variable
    	// at in the VM env variables, with value being the secret resource name. We try to find the actual
    	// secret, and replace the env variable value with it. When ECDS config update reaches the proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/sds_test.go

    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/util/sets"
    	xdsserver "istio.io/istio/pkg/xds"
    )
    
    func makeSecret(name string, data map[string]string) *corev1.Secret {
    	bdata := map[string][]byte{}
    	for k, v := range data {
    		bdata[k] = []byte(v)
    	}
    	return &corev1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			Namespace: "istio-system",
    		},
    		Data: bdata,
    	}
    }
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/hello-image-pull-secret.yaml.11.values.gen.yaml

    Jingming Guo <******@****.***> 1715374912 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top