Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for 8192 (0.04 sec)

  1. src/crypto/tls/handshake_client.go

    	copy(out, finished.verifyData)
    	return nil
    }
    
    // defaultMaxRSAKeySize is the maximum RSA key size in bits that we are willing
    // to verify the signatures of during a TLS handshake.
    const defaultMaxRSAKeySize = 8192
    
    var tlsmaxrsasize = godebug.New("tlsmaxrsasize")
    
    func checkKeySize(n int) (max int, ok bool) {
    	if v := tlsmaxrsasize.Value(); v != "" {
    		if max, err := strconv.Atoi(v); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	CMNW R13>>8, R9                            // 3f214d2b
    	CMN R6->17, R3                             // 7f4486ab
    	CMNW $(2<<12), R5                          // CMNW $8192, R5                // bf084031
    	CMN $(8<<12), R12                          // CMN $32768, R12               // 9f2140b1
    	CMN R6->0, R3                              // 7f0086ab
    	CMN R6, R3                                 // 7f0006ab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    	expectedErr := "tls: server sent certificate containing RSA key larger than 8192 bits"
    	err := c.verifyServerCertificate([][]byte{testCert.Bytes})
    	if err == nil || err.Error() != expectedErr {
    		t.Errorf("Conn.verifyServerCertificate unexpected error: want %q, got %q", expectedErr, err)
    	}
    
    	expectedErr = "tls: client sent certificate containing RSA key larger than 8192 bits"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. cmd/storage-rest-server.go

    				write(block)
    				if canWrite {
    					w.(http.Flusher).Flush()
    				}
    			}
    		}
    	}()
    	return &h
    }
    
    var poolBuf8k = sync.Pool{
    	New: func() interface{} {
    		b := make([]byte, 8192)
    		return &b
    	},
    }
    
    var poolBuf128k = sync.Pool{
    	New: func() interface{} {
    		b := make([]byte, 128<<10)
    		return b
    	},
    }
    
    // waitForHTTPStream will wait for responses where
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FORMAT_MESSAGE_IGNORE_INSERTS  = 512
    	FORMAT_MESSAGE_FROM_STRING     = 1024
    	FORMAT_MESSAGE_FROM_HMODULE    = 2048
    	FORMAT_MESSAGE_FROM_SYSTEM     = 4096
    	FORMAT_MESSAGE_ARGUMENT_ARRAY  = 8192
    	FORMAT_MESSAGE_MAX_WIDTH_MASK  = 255
    
    	MAX_PATH      = 260
    	MAX_LONG_PATH = 32768
    
    	MAX_MODULE_NAME32 = 255
    
    	MAX_COMPUTERNAME_LENGTH = 15
    
    	MAX_DHCPV6_DUID_LENGTH = 130
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    // [Conn.HandshakeContext] or the [Dialer]'s DialContext method instead.
    //
    // In order to avoid denial of service attacks, the maximum RSA key size allowed
    // in certificates sent by either the TLS server or client is limited to 8192
    // bits. This limit can be overridden by setting tlsmaxrsasize in the GODEBUG
    // environment variable (e.g. GODEBUG=tlsmaxrsasize=4096).
    func (c *Conn) Handshake() error {
    	return c.HandshakeContext(context.Background())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    namespaceUri; protected int entityEnd; protected String[] entityName; protected char[][] entityNameBuf; protected String[] entityReplacement; protected char[][] entityReplacementBuf; protected int[] entityNameHash; protected static final int READ_CHUNK_SIZE = 8192; protected java.io.Reader reader; protected String inputEncoding; protected int bufLoadFactor; protected char[] buf; protected int bufSoftLimit; protected boolean preventBufferCompact; protected int bufAbsoluteStart; protected int bufStart; protected...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    //
    // The allocator's data structures are:
    //
    //	fixalloc: a free-list allocator for fixed-size off-heap objects,
    //		used to manage storage used by the allocator.
    //	mheap: the malloc heap, managed at page (8192-byte) granularity.
    //	mspan: a run of in-use pages managed by the mheap.
    //	mcentral: collects all spans of a given size class.
    //	mcache: a per-P cache of mspans with free space.
    //	mstats: allocation statistics.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD	$-0x708(R7), R1               // MOVD	$-1800(R7), R1              // e1201cd1
    	MOVD	$-0x2000(RSP), R1             // MOVD	$-8192(RSP), R1             // e10b40d1
    	MOVD	$-0x10000(RSP), RSP           // MOVD	$-65536(RSP), RSP           // ff4340d1
    	MOVW	R1, R2
    	MOVW	ZR, R1
    	MOVW	R1, ZR
    	MOVD	R1, R2
    	MOVD	ZR, R1
    
    // store and load
    //
    // LD1/ST1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    // history here.
    func splitTextSections(ctxt *Link) bool {
    	return (ctxt.IsARM() || ctxt.IsPPC64() || (ctxt.IsARM64() && ctxt.IsDarwin())) && ctxt.IsExternal()
    }
    
    // On Wasm, we reserve 4096 bytes for zero page, then 8192 bytes for wasm_exec.js
    // to store command line args and environment variables.
    // Data sections starts from at least address 12288.
    // Keep in sync with wasm_exec.js.
    const wasmMinDataAddr = 4096 + 8192
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top