Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for sct (0.02 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-SCT

    Roland Shoemaker <******@****.***> 1715710936 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. pkg/proxy/servicechangetracker.go

    	namespacedName := types.NamespacedName{Namespace: svc.Namespace, Name: svc.Name}
    
    	sct.lock.Lock()
    	defer sct.lock.Unlock()
    
    	change, exists := sct.items[namespacedName]
    	if !exists {
    		change = &serviceChange{}
    		change.previous = sct.serviceToServiceMap(previous)
    		sct.items[namespacedName] = change
    	}
    	change.current = sct.serviceToServiceMap(current)
    	// if change.previous equal to change.current, it means no change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. pkg/proxy/conntrack/cleanup_test.go

    				Ingress: []v1.LoadBalancerIngress{{
    					IP: testLoadBalancerIP,
    				}},
    			},
    		},
    	}
    	sct.Update(nil, svc)
    
    	svcPortMap := make(proxy.ServicePortMap)
    	_ = svcPortMap.Update(sct)
    
    	// (At this point we are done with sct, and in particular, we don't use sct to
    	// construct UpdateServiceMapResults, because pkg/proxy already has its own tests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_messages_test.go

    	}
    
    	// Change serverHelloBytes so that the SCT list is empty
    	i := bytes.Index(serverHelloBytes, sct)
    	if i < 0 {
    		t.Fatal("Cannot find SCT in ServerHello")
    	}
    
    	var serverHelloEmptySCT []byte
    	serverHelloEmptySCT = append(serverHelloEmptySCT, serverHelloBytes[:i-6]...)
    	// Append the extension length and SCT list length for an empty list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages.go

    			if !extData.ReadUint16LengthPrefixed(&sctList) || sctList.Empty() {
    				return false
    			}
    			for !sctList.Empty() {
    				var sct []byte
    				if !readUint16LengthPrefixed(&sctList, &sct) ||
    					len(sct) == 0 {
    					return false
    				}
    				m.scts = append(m.scts, sct)
    			}
    		case extensionSupportedVersions:
    			if !extData.ReadUint16(&m.supportedVersion) {
    				return false
    			}
    		case extensionCookie:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/crypto/x509/root_darwin.go

    			return nil, err
    		}
    	}
    
    	// TODO(roland): we may want to allow passing in SCTs via VerifyOptions and
    	// set them via SecTrustSetSignedCertificateTimestamps, since Apple will
    	// always enforce its SCT requirements, and there are still _some_ people
    	// using TLS or OCSP for that.
    
    	if ret, err := macOS.SecTrustEvaluateWithError(trustObj); err != nil {
    		switch ret {
    		case macOS.ErrSecCertificateExpired:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    				return fmt.Errorf("Got %d scts, wanted %d", n, len(expectedSCTs))
    			}
    			for i, expected := range expectedSCTs {
    				if sct := state.SignedCertificateTimestamps[i]; !bytes.Equal(sct, expected) {
    					return fmt.Errorf("SCT #%d contained %x, expected %x", i, sct, expected)
    				}
    			}
    			return nil
    		},
    	}
    	runClientTestTLS12(t, test)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    	}
    	actual := state.SignedCertificateTimestamps
    	if len(actual) != len(expected) {
    		t.Fatalf("got %d scts, want %d", len(actual), len(expected))
    	}
    	for i, sct := range expected {
    		if !bytes.Equal(sct, actual[i]) {
    			t.Fatalf("SCT #%d was %x, but expected %x", i, actual[i], sct)
    		}
    	}
    }
    
    func TestCrossVersionResume(t *testing.T) {
    	t.Run("TLSv12", func(t *testing.T) { testCrossVersionResume(t, 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)
  9. src/crypto/tls/tls_test.go

    	rootCAs.AddCert(issuer)
    
    	now := func() time.Time { return time.Unix(1476984729, 0) }
    
    	const alpnProtocol = "golang"
    	const serverName = "example.golang"
    	var scts = [][]byte{[]byte("dummy sct 1"), []byte("dummy sct 2")}
    	var ocsp = []byte("dummy ocsp")
    
    	for _, v := range []uint16{VersionTLS12, VersionTLS13} {
    		var name string
    		switch v {
    		case VersionTLS12:
    			name = "TLSv12"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top