Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CertSigner (0.25 sec)

  1. security/pkg/server/ca/server.go

    	certSigner := crMetadata[security.CertSigner].GetStringValue()
    	_, _, certChainBytes, rootCertBytes := s.ca.GetCAKeyCertBundle().GetAll()
    	certOpts := ca.CertOpts{
    		SubjectIDs: sans,
    		TTL:        time.Duration(request.ValidityDuration) * time.Second,
    		ForCA:      false,
    		CertSigner: certSigner,
    	}
    	var signErr error
    	var cert []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/options/security.go

    		FileDebounceDuration:           fileDebounceDuration,
    		SecretRotationGracePeriodRatio: secretRotationGracePeriodRatioEnv,
    		STSPort:                        stsPort,
    		CertSigner:                     certSigner.Get(),
    		CARootPath:                     cafile.CACertFilePath,
    		CertChainFilePath:              security.DefaultCertChainFilePath,
    		KeyFilePath:                    security.DefaultKeyFilePath,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/caclient/providers/citadel/client.go

    func (c *CitadelClient) CSRSign(csrPEM []byte, certValidTTLInSec int64) (res []string, err error) {
    	crMetaStruct := &structpb.Struct{
    		Fields: map[string]*structpb.Value{
    			security.CertSigner: {
    				Kind: &structpb.Value_StringValue{StringValue: c.opts.CertSigner},
    			},
    		},
    	}
    	req := &pb.IstioCertificateRequest{
    		Csr:              string(csrPEM),
    		ValidityDuration: certValidTTLInSec,
    		Metadata:         crMetaStruct,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top