Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 85 of 85 for 0x2a (0.05 sec)

  1. src/crypto/tls/tls_test.go

    }
    
    func TestVersionName(t *testing.T) {
    	if got, exp := VersionName(VersionTLS13), "TLS 1.3"; got != exp {
    		t.Errorf("unexpected VersionName: got %q, expected %q", got, exp)
    	}
    	if got, exp := VersionName(0x12a), "0x012A"; got != exp {
    		t.Errorf("unexpected fallback VersionName: got %q, expected %q", got, exp)
    	}
    }
    
    // http2isBadCipher is copied from net/http.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    	r13 := new(rot13Reader)
    	r13.r = r
    	return r13
    }
    
    func (r13 *rot13Reader) Read(p []byte) (int, error) {
    	n, err := r13.r.Read(p)
    	for i := 0; i < n; i++ {
    		c := p[i] | 0x20 // lowercase byte
    		if 'a' <= c && c <= 'm' {
    			p[i] += 13
    		} else if 'n' <= c && c <= 'z' {
    			p[i] -= 13
    		}
    	}
    	return n, err
    }
    
    // Call ReadByte to accumulate the text of a file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    // to signal that the message is actually a HelloRetryRequest.
    var helloRetryRequestRandom = []byte{ // See RFC 8446, Section 4.1.3.
    	0xCF, 0x21, 0xAD, 0x74, 0xE5, 0x9A, 0x61, 0x11,
    	0xBE, 0x1D, 0x8C, 0x02, 0x1E, 0x65, 0xB8, 0x91,
    	0xC2, 0xA2, 0x11, 0x16, 0x7A, 0xBB, 0x8C, 0x5E,
    	0x07, 0x9E, 0x09, 0xE2, 0xC8, 0xA8, 0x33, 0x9C,
    }
    
    const (
    	// downgradeCanaryTLS12 or downgradeCanaryTLS11 is embedded in the server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix_test.go

    var TestAddr = [4]byte{0xc0, 0x00, 0x02, 0x01}
    
    // Test address from 2001:db8::/32 block, reserved by RFC 3849 for documentation.
    var TestAddr6 = [16]byte{0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}
    
    func mustNewName(name string) dnsmessage.Name {
    	nn, err := dnsmessage.NewName(name)
    	if err != nil {
    		panic(fmt.Sprint("creating name: ", err))
    	}
    	return nn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    		return o | 0xe<<24 | 0x1<<20 | 0xa<<8
    	case AFMULAD:
    		return o | 0xe<<24 | 0xa<<20 | 0xb<<8
    	case AFMULAF:
    		return o | 0xe<<24 | 0xa<<20 | 0xa<<8
    	case AFMULSD:
    		return o | 0xe<<24 | 0xa<<20 | 0xb<<8 | 0x4<<4
    	case AFMULSF:
    		return o | 0xe<<24 | 0xa<<20 | 0xa<<8 | 0x4<<4
    	case AFNMULAD:
    		return o | 0xe<<24 | 0x9<<20 | 0xb<<8 | 0x4<<4
    	case AFNMULAF:
    		return o | 0xe<<24 | 0x9<<20 | 0xa<<8 | 0x4<<4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top