Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tls_ca (0.1 sec)

  1. okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt

          .assertLogMatch(Regex("""secureConnectStart"""))
          .assertLogMatch(
            Regex(
              """secureConnectEnd: Handshake\{tlsVersion=TLS_1_[23] cipherSuite=TLS_.* peerCertificates=\[CN=localhost] localCertificates=\[]\}""",
            ),
          )
          .assertLogMatch(Regex("""connectEnd: h2"""))
          .assertLogMatch(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. security/pkg/pki/util/keycertbundle_test.go

    	}{
    		"No SAN RSA": {
    			caCertFile:    rootCertFile,
    			caKeyFile:     rootKeyFile,
    			certChainFile: nil,
    			rootCertFile:  rootCertFile,
    			certOptions: &CertOptions{
    				Host:       "test_ca.com",
    				TTL:        time.Hour,
    				Org:        "MyOrg",
    				IsCA:       true,
    				RSAKeySize: 2048,
    			},
    			expectedErr: "failed to extract id the SAN extension does not exist",
    		},
    		"RSA Success": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/obj6.go

    	//	MOVQ TLS, BX
    	// to
    	//	MOVQ runtime.tls_g(SB), BX
    	if (isAndroid || ctxt.Headtype == objabi.Hwindows) &&
    		(p.As == AMOVQ || p.As == AMOVL) && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_TLS && p.To.Type == obj.TYPE_REG && REG_AX <= p.To.Reg && p.To.Reg <= REG_R15 {
    		p.From.Type = obj.TYPE_MEM
    		p.From.Name = obj.NAME_EXTERN
    		p.From.Reg = REG_NONE
    		p.From.Sym = ctxt.Lookup("runtime.tls_g")
    		p.From.Index = REG_NONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_arm.s

    	RET
    
    // int32 clone(int32 flags, void *stack, M *mp, G *gp, void (*fn)(void));
    TEXT runtime·clone(SB),NOSPLIT,$0
    	MOVW	flags+0(FP), R0
    	MOVW	stk+4(FP), R1
    	MOVW	$0, R2	// parent tid ptr
    	MOVW	$0, R3	// tls_val
    	MOVW	$0, R4	// child tid ptr
    	MOVW	$0, R5
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	MOVW	$-16(R1), R1
    	MOVW	mp+8(FP), R6
    	MOVW	R6, 0(R1)
    	MOVW	gp+12(FP), R6
    	MOVW	R6, 4(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. src/runtime/race_arm64.s

    	ADD	$176, RSP
    	JMP	(LR)
    
    noswitch:
    	// already on g0
    	MOVD	R0, 8(RSP)	// func arg
    	MOVD	R1, 16(RSP)	// func arg
    	BL	runtime·racecallback(SB)
    	JMP	ret
    
    #ifndef TLSG_IS_VARIABLE
    // tls_g, g value for each thread in TLS
    GLOBL runtime·tls_g+0(SB), TLSBSS+DUPOK, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/runtime/asm_386.s

    	// arg 4: TLS base, stored in slot 0 (Android's TLS_SLOT_SELF).
    	// Compensate for tls_g (+8).
    	MOVL	-8(TLS), BX
    	MOVL	BX, 12(SP)
    	MOVL	$runtime·tls_g(SB), 8(SP)	// arg 3: &tls_g
    #else
    	MOVL	$0, BX
    	MOVL	BX, 12(SP)	// arg 4: not used when using platform's TLS
    #ifdef GOOS_windows
    	MOVL	$runtime·tls_g(SB), 8(SP)	// arg 3: &tls_g
    #else
    	MOVL	BX, 8(SP)	// arg 3: not used when using platform's TLS
    #endif
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/runtime/race_ppc64le.s

    	MOVD	m_g0(R7), R8
    	CMP	g, R8
    	BEQ	noswitch
    
    	MOVD	R8, g // set g = m->g0
    
    noswitch:
    	BL	runtime·racecallback<ABIInternal>(SB)
    
    	UNSTACK_AND_RESTORE_GO_TO_HOST_ABI(16)
    	RET
    
    // tls_g, g value for each thread in TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. security/pkg/pki/util/generate_cert_test.go

    func TestGenCertKeyFromOptions(t *testing.T) {
    	// set "notBefore" to be one hour ago, this ensures the issued certificate to
    	// be valid as of now.
    	caCertNotBefore := now.Add(-time.Hour)
    	caCertTTL := 24 * time.Hour
    	host := "test_ca.com"
    
    	// Options to generate a CA cert with RSA.
    	rsaCaCertOptions := CertOptions{
    		Host:         host,
    		NotBefore:    caCertNotBefore,
    		TTL:          caCertTTL,
    		SignerCert:   nil,
    		SignerPriv:   nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  9. src/runtime/asm_arm64.s

    	MOVD	_cgo_init(SB), R12
    	CBZ	R12, nocgo
    
    #ifdef GOOS_android
    	MRS_TPIDR_R0			// load TLS base pointer
    	MOVD	R0, R3			// arg 3: TLS base pointer
    	MOVD	$runtime·tls_g(SB), R2 	// arg 2: &tls_g
    #else
    	MOVD	$0, R2		        // arg 2: not used when using platform's TLS
    #endif
    	MOVD	$setg_gcc<>(SB), R1	// arg 1: setg
    	MOVD	g, R0			// arg 0: G
    	SUB	$16, RSP		// reserve 16 bytes for sp-8 where fp may be saved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top