Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for certificate_authorities (0.74 sec)

  1. src/main/resources/fess_config.properties

    #
    # The title of domain the application for logging
    domain.title = Fess
    
    # Search Engine
    search_engine.type=default
    search_engine.http.url=http://localhost:9201
    search_engine.http.ssl.certificate_authorities=
    search_engine.username=
    search_engine.password=
    search_engine.heartbeat_interval=10000
    
    # Cryptographer
    app.cipher.algorism=aes
    app.cipher.key=___change__me___
    app.digest.algorism=sha256
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. 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)
  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_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)
  6. 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)
  7. 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)
  8. 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)
  9. 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