Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for Berger (0.48 sec)

  1. src/crypto/tls/conn.go

    	serverName string
    	// secureRenegotiation is true if the server echoed the secure
    	// renegotiation extension. (This is meaningless as a server because
    	// renegotiation is not supported in that case.)
    	secureRenegotiation bool
    	// ekm is a closure for exporting keying material.
    	ekm func(label string, context []byte, length int) ([]byte, error)
    	// resumptionSecret is the resumption_master_secret for handling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/crypto/tls/quic_test.go

    		if _, ok := srv.readSecret[level]; !ok {
    			t.Errorf("server has no %v read secret", level)
    		}
    		if !reflect.DeepEqual(cli.readSecret[level], srv.writeSecret[level]) {
    			t.Errorf("client read secret does not match server write secret for level %v", level)
    		}
    		if !reflect.DeepEqual(cli.writeSecret[level], srv.readSecret[level]) {
    			t.Errorf("client write secret does not match server read secret for level %v", level)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    				t.Errorf("Got versions %x (server) and %x (client), expected %x", ss.Version, cs.Version, v)
    			}
    
    			if !ss.HandshakeComplete || !cs.HandshakeComplete {
    				t.Errorf("Got HandshakeComplete %v (server) and %v (client), expected true", ss.HandshakeComplete, cs.HandshakeComplete)
    			}
    
    			if ss.DidResume || cs.DidResume {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_test.go

    			t.Errorf("failed to call cli.Close: %v", err)
    		}
    	}()
    	server := Server(s, serverConfig)
    	err = server.Handshake()
    	if err == nil {
    		serverState = server.ConnectionState()
    		if _, err := io.WriteString(server, sentinel); err != nil {
    			t.Errorf("failed to call server.Write: %v", err)
    		}
    		if err := server.Close(); err != nil {
    			t.Errorf("failed to call server.Close: %v", err)
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	ui.help["flamegraph"] = "Display profile as a flame graph"
    	ui.help["reset"] = "Show the entire profile"
    	ui.help["save_config"] = "Save current settings"
    
    	server := o.HTTPServer
    	if server == nil {
    		server = defaultWebServer
    	}
    	args := &plugin.HTTPServerArgs{
    		Hostport: net.JoinHostPort(host, strconv.Itoa(port)),
    		Host:     host,
    		Port:     port,
    		Handlers: map[string]http.Handler{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/crypto/tls/defaults.go

    }
    
    // defaultSupportedSignatureAlgorithms contains the signature and hash algorithms that
    // the code advertises as supported in a TLS 1.2+ ClientHello and in a TLS 1.2+
    // CertificateRequest. The two fields are merged to match with TLS 1.3.
    // Note that in TLS 1.2, the ECDSA algorithms are not constrained to P-256, etc.
    var defaultSupportedSignatureAlgorithms = []SignatureScheme{
    	PSSWithSHA256,
    	ECDSAWithP256AndSHA256,
    	Ed25519,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/pprof/pprof.go

    		// error is from pprof endpoint
    		if body, err := io.ReadAll(resp.Body); err == nil {
    			return fmt.Errorf("server response: %s - %s", resp.Status, body)
    		}
    	}
    	return fmt.Errorf("server response: %s", resp.Status)
    }
    
    // cpuProfileHandler is the Go pprof CPU profile handler URL.
    const cpuProfileHandler = "/debug/pprof/profile"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/fetch.go

    The bits may have been replaced on the origin server, or an attacker may
    have intercepted the download attempt.
    
    For more information, see 'go help module-auth'.
    `
    
    const sumdbMismatch = `
    
    SECURITY ERROR
    This download does NOT match the one reported by the checksum server.
    The bits may have been replaced on the origin server, or an attacker may
    have intercepted the download attempt.
    
    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. src/cmd/compile/internal/syntax/pos.go

    // license that can be found in the LICENSE file.
    
    package syntax
    
    import "fmt"
    
    // PosMax is the largest line or column value that can be represented without loss.
    // Incoming values (arguments) larger than PosMax will be set to PosMax.
    //
    // Keep this consistent with maxLineCol in go/scanner.
    const PosMax = 1 << 30
    
    // A Pos represents an absolute (line, col) source position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    		Sym:           sym,
    		Obj:           obj,
    		UI:            o.UI,
    		HTTPServer:    httpServer,
    		HTTPTransport: o.HTTPTransport,
    	}
    }
    
    // HTTPServerArgs contains arguments needed by an HTTP server that
    // is exporting a pprof web interface.
    type HTTPServerArgs plugin.HTTPServerArgs
    
    // Options groups all the optional plugins into pprof.
    type Options struct {
    	Writer        Writer
    	Flagset       FlagSet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top