Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for 0x0004 (0.19 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	SO_ERROR                        = 0x1007
    	SO_IGNOREINCOMINGPUSH           = 0x1
    	SO_IGNORESOURCEVIPA             = 0x0002
    	SO_KEEPALIVE                    = 0x0008
    	SO_LINGER                       = 0x0080
    	SO_NONBLOCKLOCAL                = 0x8001
    	SO_NOREUSEADDR                  = 0x1000
    	SO_OOBINLINE                    = 0x0100
    	SO_OPTACK                       = 0x8004
    	SO_OPTMSS                       = 0x8003
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/syscall/fs_wasip1.go

    }
    
    const (
    	LOOKUP_SYMLINK_FOLLOW = 0x00000001
    )
    
    const (
    	OFLAG_CREATE    = 0x0001
    	OFLAG_DIRECTORY = 0x0002
    	OFLAG_EXCL      = 0x0004
    	OFLAG_TRUNC     = 0x0008
    )
    
    const (
    	FDFLAG_APPEND   = 0x0001
    	FDFLAG_DSYNC    = 0x0002
    	FDFLAG_NONBLOCK = 0x0004
    	FDFLAG_RSYNC    = 0x0008
    	FDFLAG_SYNC     = 0x0010
    )
    
    const (
    	RIGHT_FD_DATASYNC = 1 << iota
    	RIGHT_FD_READ
    	RIGHT_FD_SEEK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    const (
    	SE_OWNER_DEFAULTED       = 0x0001
    	SE_GROUP_DEFAULTED       = 0x0002
    	SE_DACL_PRESENT          = 0x0004
    	SE_DACL_DEFAULTED        = 0x0008
    	SE_SACL_PRESENT          = 0x0010
    	SE_SACL_DEFAULTED        = 0x0020
    	SE_DACL_AUTO_INHERIT_REQ = 0x0100
    	SE_SACL_AUTO_INHERIT_REQ = 0x0200
    	SE_DACL_AUTO_INHERITED   = 0x0400
    	SE_SACL_AUTO_INHERITED   = 0x0800
    	SE_DACL_PROTECTED        = 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/crypto/internal/hpke/hpke.go

    }{
    	// RFC 9180, Section 7.3
    	0x0001: {keySize: 16, nonceSize: 12, aead: aesGCMNew},
    	0x0002: {keySize: 32, nonceSize: 12, aead: aesGCMNew},
    	0x0003: {keySize: chacha20poly1305.KeySize, nonceSize: chacha20poly1305.NonceSize, aead: chacha20poly1305.New},
    }
    
    var SupportedKDFs = map[uint16]func() *hkdfKDF{
    	// RFC 9180, Section 7.2
    	0x0001: func() *hkdfKDF { return &hkdfKDF{crypto.SHA256} },
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	http2cipher_TLS_DH_anon_WITH_AES_128_CBC_SHA256 uint16 = 0x006C
    	http2cipher_TLS_DH_anon_WITH_AES_256_CBC_SHA256 uint16 = 0x006D
    	// Unassigned uint16 =  0x006E-83
    	http2cipher_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA        uint16 = 0x0084
    	http2cipher_TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA     uint16 = 0x0085
    	http2cipher_TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA     uint16 = 0x0086
    	http2cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA    uint16 = 0x0087
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-SCT

    000004c0  23 6e 74 81 e5 e5 e8 c0  de 9b b0 ed d2 32 bc 2a  |#nt..........2.*|
    000004d0  b1 30 b2 eb ac 9e 23 f8  be ea 31 9a b4 55 16 03  |.0....#...1..U..|
    000004e0  03 00 04 0e 00 00 00                              |.......|
    >>> Flow 3 (client to server)
    00000000  16 03 03 00 25 10 00 00  21 20 2f e5 7d a3 47 cd  |....%...! /.}.G.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/runtime/os_windows.go

    		// https://github.com/golang/go/issues/8687#issuecomment-656259353
    		_CREATE_WAITABLE_TIMER_HIGH_RESOLUTION = 0x00000002
    
    		_SYNCHRONIZE        = 0x00100000
    		_TIMER_QUERY_STATE  = 0x0001
    		_TIMER_MODIFY_STATE = 0x0002
    	)
    	return stdcall4(_CreateWaitableTimerExW, 0, 0,
    		_CREATE_WAITABLE_TIMER_HIGH_RESOLUTION,
    		_SYNCHRONIZE|_TIMER_QUERY_STATE|_TIMER_MODIFY_STATE)
    }
    
    func initHighResTimer() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  8. src/crypto/cipher/gcm.go

    	// four terms. In characteristic 2 fields, subtraction == addition ==
    	// XOR.
    	if msbSet {
    		double.low ^= 0xe100000000000000
    	}
    
    	return
    }
    
    var gcmReductionTable = []uint16{
    	0x0000, 0x1c20, 0x3840, 0x2460, 0x7080, 0x6ca0, 0x48c0, 0x54e0,
    	0xe100, 0xfd20, 0xd940, 0xc560, 0x9180, 0x8da0, 0xa9c0, 0xb5e0,
    }
    
    // mul sets y to y*H, where H is the GCM key, fixed during NewGCMWithNonceSize.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    func TestSimpleError(t *testing.T) {
    	testClientHelloFailure(t, testConfig, &serverHelloDoneMsg{}, "unexpected handshake message")
    }
    
    var badProtocolVersions = []uint16{0x0000, 0x0005, 0x0100, 0x0105, 0x0200, 0x0205, VersionSSL30}
    
    func TestRejectBadProtocolVersion(t *testing.T) {
    	config := testConfig.Clone()
    	config.MinVersion = VersionSSL30
    	for _, v := range badProtocolVersions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/crypto/tls/cipher_suites.go

    	TLS_RSA_WITH_RC4_128_SHA                      uint16 = 0x0005
    	TLS_RSA_WITH_3DES_EDE_CBC_SHA                 uint16 = 0x000a
    	TLS_RSA_WITH_AES_128_CBC_SHA                  uint16 = 0x002f
    	TLS_RSA_WITH_AES_256_CBC_SHA                  uint16 = 0x0035
    	TLS_RSA_WITH_AES_128_CBC_SHA256               uint16 = 0x003c
    	TLS_RSA_WITH_AES_128_GCM_SHA256               uint16 = 0x009c
    	TLS_RSA_WITH_AES_256_GCM_SHA384               uint16 = 0x009d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top