Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for certificate_authorities (0.3 sec)

  1. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.conversion.go

    	out.Certificates = *(*[]output.Certificate)(unsafe.Pointer(&in.Certificates))
    	out.CertificateAuthorities = *(*[]output.Certificate)(unsafe.Pointer(&in.CertificateAuthorities))
    	return nil
    }
    
    // Convert_v1alpha3_CertificateExpirationInfo_To_output_CertificateExpirationInfo is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'search_engine.http.ssl.certificate_authorities'. <br>
         * The value is, e.g.  <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchEngineHttpSslCertificateAuthorities();
    
        /**
         * Get the value for the key 'search_engine.http.ssl.certificate_authorities' as {@link Integer}. <br>
         * The value is, e.g.  <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages_test.go

    	m := &certificateRequestMsg{}
    	m.certificateTypes = randomBytes(rand.Intn(5)+1, rand)
    	for i := 0; i < rand.Intn(100); i++ {
    		m.certificateAuthorities = append(m.certificateAuthorities, randomBytes(rand.Intn(15)+1, rand))
    	}
    	return reflect.ValueOf(m)
    }
    
    func (*certificateVerifyMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &certificateVerifyMsg{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/certs.go

    	for _, handler := range rm.CAs() {
    		if ok, _ := rm.CAExists(handler.Name); ok {
    			e, err := rm.GetCAExpirationInfo(handler.Name)
    			if err != nil {
    				return nil, err
    			}
    			info.CertificateAuthorities = append(info.CertificateAuthorities, outputapiv1alpha3.Certificate{
    				Name:                e.Name,
    				ExpirationDate:      metav1.Time{Time: e.ExpirationDate},
    				ResidualTimeSeconds: int64(e.ResidualTime() / time.Second),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages.go

    	copy(cas, data)
    	data = data[casLength:]
    
    	m.certificateAuthorities = nil
    	for len(cas) > 0 {
    		if len(cas) < 2 {
    			return false
    		}
    		caLen := uint16(cas[0])<<8 | uint16(cas[1])
    		cas = cas[2:]
    
    		if len(cas) < int(caLen) {
    			return false
    		}
    
    		m.certificateAuthorities = append(m.certificateAuthorities, cas[:caLen])
    		cas = cas[caLen:]
    	}
    
    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/tls/handshake_server.go

    		}
    
    		// An empty list of certificateAuthorities signals to
    		// the client that it may send any certificate in response
    		// to our request. When we know the CAs we trust, then
    		// we can send them down, so that the client can choose
    		// an appropriate certificate to give to us.
    		if c.config.ClientCAs != nil {
    			certReq.certificateAuthorities = c.config.ClientCAs.Subjects()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/certs_test.go

    			var info outputapiv1alpha3.CertificateExpirationInfo
    			require.NoError(t, json.Unmarshal(output.Bytes(), &info))
    			assert.Len(t, info.Certificates, len(kubeadmCerts)+len(kubeConfigs))
    			assert.Len(t, info.CertificateAuthorities, len(caCerts))
    			for _, cert := range info.Certificates {
    				if tc.brokenCertName == cert.Name {
    					assert.True(t, cert.Missing, "expected certificate to be missing")
    				} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_tls13.go

    			return err
    		}
    		return nil
    	}
    
    	cert, err := c.getClientCertificate(&CertificateRequestInfo{
    		AcceptableCAs:    hs.certReq.certificateAuthorities,
    		SignatureSchemes: hs.certReq.supportedSignatureAlgorithms,
    		Version:          c.vers,
    		ctx:              hs.ctx,
    	})
    	if err != nil {
    		return err
    	}
    
    	certMsg := new(certificateMsgTLS13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_tls13.go

    		certReq := new(certificateRequestMsgTLS13)
    		certReq.ocspStapling = true
    		certReq.scts = true
    		certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
    		if c.config.ClientCAs != nil {
    			certReq.certificateAuthorities = c.config.ClientCAs.Subjects()
    		}
    
    		if _, err := hs.c.writeHandshakeRecord(certReq, hs.transcript); err != nil {
    			return err
    		}
    	}
    
    	certMsg := new(certificateMsgTLS13)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client.go

    func certificateRequestInfoFromMsg(ctx context.Context, vers uint16, certReq *certificateRequestMsg) *CertificateRequestInfo {
    	cri := &CertificateRequestInfo{
    		AcceptableCAs: certReq.certificateAuthorities,
    		Version:       vers,
    		ctx:           ctx,
    	}
    
    	var rsaAvail, ecAvail bool
    	for _, certType := range certReq.certificateTypes {
    		switch certType {
    		case certTypeRSASign:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
Back to top