Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for plainText (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/plaintext.html

    Dmitri Shuralyov <******@****.***> 1652741088 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 14:39:18 UTC 2022
    - 324 bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/plaintext.yaml.tmpl

    # This configures all services within the namespace to use mTLS with permissive mode (allowing plaintext).
    
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: ns-default
      namespace: {{ .To.NamespaceName }}
    spec:
      mtls:
        mode: PERMISSIVE
    
    ---
    # This configures requests to any service in the namespace to use mTLS.
    
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/plaintext-to-permissive.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      annotations:
        test-suite: plaintext-to-permissive
    spec:
      mtls:
        mode: PERMISSIVE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: default
      annotations:
        test-suite: plaintext-to-permissive
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 397 bytes
    - Viewed (0)
  4. tests/integration/ambient/testdata/global-plaintext.yaml

    John Howard <******@****.***> 1676573723 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 215 bytes
    - Viewed (0)
  5. src/crypto/cipher/example_test.go

    	plaintext := []byte("exampleplaintext")
    
    	// CBC mode works on blocks so plaintexts may need to be padded to the
    	// next whole block. For an example of such padding, see
    	// https://tools.ietf.org/html/rfc5246#section-6.2.3.2. Here we'll
    	// assume that the plaintext is already of the correct length.
    	if len(plaintext)%aes.BlockSize != 0 {
    		panic("plaintext is not a multiple of the block size")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 30 16:23:44 UTC 2018
    - 11.8K bytes
    - Viewed (0)
  6. src/crypto/cipher/gcm_test.go

    			}
    		}
    
    		ct := aesgcm.Seal(nil, nonce, plaintext, ad)
    		if ctHex := hex.EncodeToString(ct); ctHex != test.result {
    			t.Errorf("#%d: got %s, want %s", i, ctHex, test.result)
    			continue
    		}
    
    		plaintext2, err := aesgcm.Open(nil, nonce, ct, ad)
    		if err != nil {
    			t.Errorf("#%d: Open failed", i)
    			continue
    		}
    
    		if !bytes.Equal(plaintext, plaintext2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    					Name:   "plaintext on tls port",
    					Call:   mkCall(8080, simulation.Plaintext),
    					Result: simulation.Result{Error: simulation.ErrNoFilterChain},
    				},
    				{
    					Name:   "tls on tls port",
    					Call:   mkCall(8080, simulation.MTLS),
    					Result: simulation.Result{ClusterMatched: "inbound|8080||"},
    				},
    				{
    					Name:   "plaintext on plaintext port",
    					Call:   mkCall(9090, simulation.Plaintext),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/test/framework/features/allowlist.txt

    mtls_k8s_ca,TestMtlsStrictK8sCA/global-plaintext/a->tcp://naked:tcp
    mtls_k8s_ca,TestMtlsStrictK8sCA/global-plaintext/a->ws://a:http
    mtls_k8s_ca,TestMtlsStrictK8sCA/global-plaintext/a->ws://b:http
    mtls_k8s_ca,TestMtlsStrictK8sCA/global-plaintext/a->ws://headless:http
    mtls_k8s_ca,TestMtlsStrictK8sCA/global-plaintext/a->ws://multiversion:http
    mtls_k8s_ca,TestMtlsStrictK8sCA/global-plaintext/a->ws://naked:http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  9. internal/kms/secret-key_test.go

    		t.Fatalf("Failed to generate key: %v", err)
    	}
    	plaintext, err := KMS.Decrypt(context.TODO(), &DecryptRequest{
    		Name:       key.KeyID,
    		Ciphertext: key.Ciphertext,
    	})
    	if err != nil {
    		t.Fatalf("Failed to decrypt key: %v", err)
    	}
    	if !bytes.Equal(key.Plaintext, plaintext) {
    		t.Fatalf("Decrypted key does not match generated one: got %x - want %x", key.Plaintext, plaintext)
    	}
    }
    
    func TestDecryptKey(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/crypto/cipher/cfb_test.go

    	block, err := aes.NewCipher(commonKey128)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    
    	plaintext := []byte("this is the plaintext. this is the plaintext.")
    	iv := make([]byte, block.BlockSize())
    	rand.Reader.Read(iv)
    	cfb := cipher.NewCFBEncrypter(block, iv)
    	ciphertext := make([]byte, len(plaintext))
    	copy(ciphertext, plaintext)
    	cfb.XORKeyStream(ciphertext, ciphertext)
    
    	cfbdec := cipher.NewCFBDecrypter(block, iv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:18:36 UTC 2019
    - 2.8K bytes
    - Viewed (0)
Back to top