Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for vers (0.05 sec)

  1. src/crypto/tls/conn.go

    		outBuf[0] = byte(typ)
    		vers := c.vers
    		if vers == 0 {
    			// Some TLS servers fail if the record version is
    			// greater than TLS 1.0 for the initial ClientHello.
    			vers = VersionTLS10
    		} else if vers == VersionTLS13 {
    			// TLS 1.3 froze the record layer version to 1.2.
    			// See RFC 8446, Section 5.1.
    			vers = VersionTLS12
    		}
    		outBuf[1] = byte(vers >> 8)
    		outBuf[2] = byte(vers)
    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/handshake_server_test.go

    	go func() {
    		cli := Client(c, testConfig)
    		if ch, ok := m.(*clientHelloMsg); ok {
    			cli.vers = ch.vers
    		}
    		if _, err := cli.writeHandshakeRecord(m, nil); err != nil {
    			testFatal(t, err)
    		}
    		c.Close()
    	}()
    	ctx := context.Background()
    	conn := Server(s, serverConfig)
    	ch, err := conn.readClientHello(ctx)
    	if conn.vers == VersionTLS13 {
    		hs := serverHandshakeStateTLS13{
    			c:           conn,
    			ctx:         ctx,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    			if !extData.ReadUint8LengthPrefixed(&versList) || versList.Empty() {
    				return false
    			}
    			for !versList.Empty() {
    				var vers uint16
    				if !versList.ReadUint16(&vers) {
    					return false
    				}
    				m.supportedVersions = append(m.supportedVersions, vers)
    			}
    		case extensionCookie:
    			// RFC 8446, Section 4.2.2
    			if !readUint16LengthPrefixed(&extData, &m.cookie) ||
    				len(m.cookie) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    		for _, vers := range versions {
    			if len(vers) == 0 {
    				consistent = false
    				continue
    			}
    			ver := vers[0]
    			if len(tops) == 0 {
    				consistent = true
    				topSig = ver.header
    			} else {
    				consistent = consistent && ver.header == topSig
    			}
    			tops = append(tops, vers[0])
    		}
    
    		// Check if done...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    				Err: &module.InvalidVersionError{
    					Version: vers,
    					Err:     fmt.Errorf("malformed module path %q", path),
    				},
    			}
    		}
    		if vers != "" && module.CanonicalVersion(vers) == vers {
    			if err := module.CheckPathMajor(vers, pathMajor); err != nil {
    				return "", module.VersionError(module.Version{Path: path, Version: vers}, err)
    			}
    			return vers, nil
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    		if _, err := selectSignatureScheme(vers, c, chi.SignatureSchemes); err != nil {
    			return supportsRSAFallback(err)
    		}
    	}
    
    	// In TLS 1.3 we are done because supported_groups is only relevant to the
    	// ECDHE computation, point format negotiation is removed, cipher suites are
    	// only relevant to the AEAD choice, and static RSA does not exist.
    	if vers == VersionTLS13 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

    	lib = new(Elflib)
    	lib.next = *list
    	lib.file = file
    	*list = lib
    
    havelib:
    	for aux := lib.aux; aux != nil; aux = aux.next {
    		if aux.vers == vers {
    			return aux
    		}
    	}
    	aux := new(Elfaux)
    	aux.next = lib.aux
    	aux.vers = vers
    	lib.aux = aux
    
    	return aux
    }
    
    func elfdynhash(ctxt *Link) {
    	if !ctxt.IsELF {
    		return
    	}
    
    	nsym := Nelfsym
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/net/http/request.go

    // a minor version, such as "HTTP/2", are not valid.
    func ParseHTTPVersion(vers string) (major, minor int, ok bool) {
    	switch vers {
    	case "HTTP/1.1":
    		return 1, 1, true
    	case "HTTP/1.0":
    		return 1, 0, true
    	}
    	if !strings.HasPrefix(vers, "HTTP/") {
    		return 0, 0, false
    	}
    	if len(vers) != len("HTTP/X.Y") {
    		return 0, 0, false
    	}
    	if vers[6] != '.' {
    		return 0, 0, false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    }
    
    func testResumptionKeepsOCSPAndSCT(t *testing.T, ver uint16) {
    	issuer, err := x509.ParseCertificate(testRSACertificateIssuer)
    	if err != nil {
    		t.Fatalf("failed to parse test issuer")
    	}
    	roots := x509.NewCertPool()
    	roots.AddCert(issuer)
    	clientConfig := &Config{
    		MaxVersion:         ver,
    		ClientSessionCache: NewLRUClientSessionCache(32),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    	switch runtime.GOOS {
    	case "darwin":
    		out, err := testenv.Command(t, "uname", "-a").CombinedOutput()
    		if err != nil {
    			t.Fatal(err)
    		}
    		vers := string(out)
    		t.Logf("uname -a: %v", vers)
    	case "plan9":
    		t.Skip("skipping on plan9")
    	case "wasip1":
    		t.Skip("skipping on wasip1")
    	}
    
    	broken := cpuProfilingBroken()
    
    	deadline, ok := t.Deadline()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top