Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for madevers (0.24 sec)

  1. src/time/zoneinfo_read.go

    	buf = make([]byte, size)
    	if err := preadn(fd, buf, off); err != nil {
    		return nil, errors.New("corrupt zip file " + zipfile)
    	}
    
    	for i := 0; i < n; i++ {
    		// zip entry layout:
    		//	0	magic[4]
    		//	4	madevers[1]
    		//	5	madeos[1]
    		//	6	extvers[1]
    		//	7	extos[1]
    		//	8	flags[2]
    		//	10	meth[2]
    		//	12	modtime[2]
    		//	14	moddate[2]
    		//	16	crc[4]
    		//	20	csize[4]
    		//	24	uncsize[4]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/cmd/distpack/pack.go

    	} else {
    		writeTgz(distpack(version+"."+goos+"-"+goarch+".tar.gz"), zipArch)
    	}
    
    	writeZip(distpack(modVers+".zip"), modArch)
    	writeFile(distpack(modVers+".mod"),
    		[]byte(fmt.Sprintf("module %s\n", modPath)))
    	writeFile(distpack(modVers+".info"),
    		[]byte(fmt.Sprintf("{%q:%q, %q:%q}\n",
    			"Version", modVers,
    			"Time", versionTime.Format(time.RFC3339))))
    }
    
    // mode computes the mode for the given file name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server.go

    	}
    
    	hs.hello.random = make([]byte, 32)
    	serverRandom := hs.hello.random
    	// Downgrade protection canaries. See RFC 8446, Section 4.1.3.
    	maxVers := c.config.maxSupportedVersion(roleServer)
    	if maxVers >= VersionTLS12 && c.vers < maxVers || testingOnlyForceDowngradeCanary {
    		if c.vers == VersionTLS12 {
    			copy(serverRandom[24:], downgradeCanaryTLS12)
    		} else {
    			copy(serverRandom[24:], downgradeCanaryTLS11)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client.go

    	// See RFC 8446, Section 4.1.3.
    	maxVers := c.config.maxSupportedVersion(roleClient)
    	tls12Downgrade := string(serverHello.random[24:]) == downgradeCanaryTLS12
    	tls11Downgrade := string(serverHello.random[24:]) == downgradeCanaryTLS11
    	if maxVers == VersionTLS13 && c.vers <= VersionTLS12 && (tls12Downgrade || tls11Downgrade) ||
    		maxVers == VersionTLS12 && c.vers <= VersionTLS11 && tls11Downgrade {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    		expectedVers = VersionTLS12
    	}
    	n := int(hdr[3])<<8 | int(hdr[4])
    	if c.haveVers && vers != expectedVers {
    		c.sendAlert(alertProtocolVersion)
    		msg := fmt.Sprintf("received record with version %x when expecting version %x", vers, expectedVers)
    		return c.in.setErrorLocked(c.newRecordHeaderError(nil, msg))
    	}
    	if !c.haveVers {
    		// First message, be extra suspicious: this might not be a TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top