Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 257 for uint16 (0.34 sec)

  1. src/net/http/h2_bundle.go

    	// Reserved uint16 =  0x0050-58
    	// Reserved uint16 =  0x0059-5C
    	// Unassigned uint16 =  0x005D-5F
    	// Reserved uint16 =  0x0060-66
    	http2cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 uint16 = 0x0067
    	http2cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA256  uint16 = 0x0068
    	http2cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA256  uint16 = 0x0069
    	http2cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 uint16 = 0x006A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    	x[1] = uint8(length >> 16)
    	x[2] = uint8(length >> 8)
    	x[3] = uint8(length)
    	x[8] = uint8(ticketLen >> 8)
    	x[9] = uint8(ticketLen)
    	copy(x[10:], m.ticket)
    
    	return x, nil
    }
    
    func (m *newSessionTicketMsg) unmarshal(data []byte) bool {
    	if len(data) < 10 {
    		return false
    	}
    
    	length := uint32(data[1])<<16 | uint32(data[2])<<8 | uint32(data[3])
    	if uint32(len(data))-4 != length {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    		{"RSA", []uint16{TLS_RSA_WITH_AES_256_GCM_SHA384}, nil, nil, false},
    		{"RSA with ec_point_format", []uint16{TLS_RSA_WITH_AES_256_GCM_SHA384}, nil, []uint8{pointFormatUncompressed}, false},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			clientHello := &clientHelloMsg{
    				vers:               VersionTLS12,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/reflect/iter.go

    		return rangeNum[int8](v.Int())
    	case Int16:
    		return rangeNum[int16](v.Int())
    	case Int32:
    		return rangeNum[int32](v.Int())
    	case Int64:
    		return rangeNum[int64](v.Int())
    	case Uint:
    		return rangeNum[uint](v.Uint())
    	case Uint8:
    		return rangeNum[uint8](v.Uint())
    	case Uint16:
    		return rangeNum[uint16](v.Uint())
    	case Uint32:
    		return rangeNum[uint32](v.Uint())
    	case Uint64:
    		return rangeNum[uint64](v.Uint())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pkg/proxy/util/nfacct/handler.go

    // into the resulting request.
    func (n *netlinkHandler) newRequest(cmd int, flags uint16) request {
    	req := &nl.NetlinkRequest{
    		// netlink message header
    		// (definition: https://github.com/torvalds/linux/blob/v6.7/include/uapi/linux/netlink.h#L44-L58)
    		NlMsghdr: unix.NlMsghdr{
    			Len:   uint32(unix.SizeofNlMsghdr),
    			Type:  uint16(cmd | (unix.NFNL_SUBSYS_ACCT << 8)),
    			Flags: flags,
    		},
    		Sockets: map[int]*nl.SocketHandle{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	extensionExtendedMasterSecret    uint16 = 23
    	extensionSessionTicket           uint16 = 35
    	extensionPreSharedKey            uint16 = 41
    	extensionEarlyData               uint16 = 42
    	extensionSupportedVersions       uint16 = 43
    	extensionCookie                  uint16 = 44
    	extensionPSKModes                uint16 = 45
    	extensionCertificateAuthorities  uint16 = 47
    	extensionSignatureAlgorithmsCert uint16 = 50
    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/crypto/tls/tls_test.go

    			CipherSuites:      []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    			SignatureSchemes:  []SignatureScheme{PKCS1WithSHA1},
    			SupportedVersions: []uint16{VersionTLS13, VersionTLS12},
    		}, "signature algorithms"},
    		{rsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    			SignatureSchemes:  []SignatureScheme{PKCS1WithSHA1},
    			SupportedVersions: []uint16{VersionTLS13, VersionTLS12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. src/syscall/dir_plan9.go

    	Mode   uint32 // permissions
    	Atime  uint32 // last read time
    	Mtime  uint32 // last write time
    	Length int64  // file length
    	Name   string // last element of path
    	Uid    string // owner name
    	Gid    string // group name
    	Muid   string // last modifier name
    }
    
    var nullDir = Dir{
    	Type: ^uint16(0),
    	Dev:  ^uint32(0),
    	Qid: Qid{
    		Path: ^uint64(0),
    		Vers: ^uint32(0),
    		Type: ^uint8(0),
    	},
    	Mode:   ^uint32(0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/os/path_windows.go

    	// the working directory has changed without using os.Chdir.
    	n := uint32(pathLength) + 1
    	var buf []uint16
    	for {
    		buf = make([]uint16, n+uint32(len(prefix)))
    		n, err = syscall.GetFullPathName(&p[0], n, &buf[len(prefix)], nil)
    		if err != nil {
    			return path
    		}
    		if n <= uint32(len(buf)-len(prefix)) {
    			buf = buf[:n+uint32(len(prefix))]
    			break
    		}
    	}
    	if isUNC {
    		// Remove leading \\.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/crypto/internal/mlkem768/mlkem768.go

    	for i := 0; i < n; i += 4 {
    		x := uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 | uint64(b[4])<<32
    		b = b[5:]
    		f[i] = fieldElement(decompress(uint16(x>>0&0b11_1111_1111), 10))
    		f[i+1] = fieldElement(decompress(uint16(x>>10&0b11_1111_1111), 10))
    		f[i+2] = fieldElement(decompress(uint16(x>>20&0b11_1111_1111), 10))
    		f[i+3] = fieldElement(decompress(uint16(x>>30&0b11_1111_1111), 10))
    	}
    	return f
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top