Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for KeyLogWriter (0.24 sec)

  1. src/crypto/tls/handshake_test.go

    	fast         = flag.Bool("fast", false, "impose a quick, possibly flaky timeout on recorded tests")
    	keyFile      = flag.String("keylog", "", "destination file for KeyLogWriter")
    	bogoMode     = flag.Bool("bogo-mode", false, "Enabled bogo shim mode, ignore everything else")
    	bogoFilter   = flag.String("bogo-filter", "", "BoGo test filter")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	Renegotiation RenegotiationSupport
    
    	// KeyLogWriter optionally specifies a destination for TLS master secrets
    	// in NSS key log format that can be used to allow external programs
    	// such as Wireshark to decrypt TLS connections.
    	// See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format.
    	// Use of KeyLogWriter compromises security and should only be
    	// used for debugging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    }
    
    func TestKeyLogTLS12(t *testing.T) {
    	var serverBuf, clientBuf bytes.Buffer
    
    	clientConfig := testConfig.Clone()
    	clientConfig.KeyLogWriter = &clientBuf
    	clientConfig.MaxVersion = VersionTLS12
    
    	serverConfig := testConfig.Clone()
    	serverConfig.KeyLogWriter = &serverBuf
    	serverConfig.MaxVersion = VersionTLS12
    
    	c, s := localPipe(t)
    	done := make(chan bool)
    
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    		case "RootCAs", "ClientCAs":
    			f.Set(reflect.ValueOf(x509.NewCertPool()))
    		case "ClientSessionCache":
    			f.Set(reflect.ValueOf(NewLRUClientSessionCache(10)))
    		case "KeyLogWriter":
    			f.Set(reflect.ValueOf(io.Writer(os.Stdout)))
    		case "NextProtos":
    			f.Set(reflect.ValueOf([]string{"a", "b"}))
    		case "ServerName":
    			f.Set(reflect.ValueOf("b"))
    		case "ClientAuth":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top