Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 193 for cpsr (0.06 sec)

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

    	var cert []byte
    	var respCertChain []string
    	if certSigner == "" {
    		cert, signErr = s.ca.Sign([]byte(request.Csr), certOpts)
    	} else {
    		serverCaLog.Debugf("signing CSR with cert chain")
    		respCertChain, signErr = s.ca.SignWithCertChain([]byte(request.Csr), certOpts)
    	}
    	if signErr != nil {
    		serverCaLog.Errorf("CSR signing error: %v", signErr.Error())
    		s.monitoring.GetCertSignError(signErr.(*caerror.Error).ErrorType()).Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pkg/registry/certificates/certificates/storage/metrics.go

    			oldCSR, ok := old.(*certificates.CertificateSigningRequest)
    			if !ok {
    				return
    			}
    
    			// if the old CSR already has a certificate, do not double count it
    			if len(oldCSR.Status.Certificate) > 0 {
    				return
    			}
    
    			if oldCSR.Spec.ExpirationSeconds == nil {
    				return // ignore CSRs that are not using the CSR duration feature
    			}
    
    			newCSR, ok := obj.(*certificates.CertificateSigningRequest)
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. security/pkg/monitoring/monitoring.go

    package monitoring
    
    import "istio.io/istio/pkg/monitoring"
    
    // RequestType specifies the type of request we are monitoring. Current supported are CSR and TokenExchange
    var RequestType = monitoring.CreateLabel("request_type")
    
    const (
    	TokenExchange = "token_exchange"
    	CSR           = "csr"
    )
    
    var NumOutgoingRetries = monitoring.NewSum(
    	"num_outgoing_retries",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/runtime/preempt_arm64.s

    	STP (R14, R15), 120(RSP)
    	STP (R16, R17), 136(RSP)
    	STP (R19, R20), 152(RSP)
    	STP (R21, R22), 168(RSP)
    	STP (R23, R24), 184(RSP)
    	STP (R25, R26), 200(RSP)
    	MOVD NZCV, R0
    	MOVD R0, 216(RSP)
    	MOVD FPSR, R0
    	MOVD R0, 224(RSP)
    	FSTPD (F0, F1), 232(RSP)
    	FSTPD (F2, F3), 248(RSP)
    	FSTPD (F4, F5), 264(RSP)
    	FSTPD (F6, F7), 280(RSP)
    	FSTPD (F8, F9), 296(RSP)
    	FSTPD (F10, F11), 312(RSP)
    	FSTPD (F12, F13), 328(RSP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 01:58:56 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. security/pkg/pki/ra/common.go

    const (
    	// ExtCAK8s : Integrate with external CA using k8s CSR API
    	ExtCAK8s CaExternalType = "ISTIOD_RA_KUBERNETES_API"
    
    	// DefaultExtCACertDir : Location of external CA certificate
    	DefaultExtCACertDir string = "./etc/external-ca-cert"
    )
    
    // ValidateCSR : Validate all SAN extensions in csrPEM match authenticated identities
    func ValidateCSR(csrPEM []byte, subjectIDs []string) bool {
    	csr, err := util.ParsePemEncodedCSR(csrPEM)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. pkg/apis/certificates/v1beta1/defaults.go

    	csr, err := ParseCSR(obj.Request)
    	switch {
    	case err != nil:
    		// Set the signerName to 'legacy-unknown' as the CSR could not be
    		// recognised.
    		return certificatesv1beta1.LegacyUnknownSignerName
    	case IsKubeletClientCSR(csr, obj.Usages):
    		return certificatesv1beta1.KubeAPIServerClientKubeletSignerName
    	case IsKubeletServingCSR(csr, obj.Usages):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.golden.yaml

              name: istio-kubeconfig
              readOnly: true
            - mountPath: /var/run/secrets/istiod/tls
              name: istio-csr-dns-cert
              readOnly: true
            - mountPath: /var/run/secrets/istiod/ca
              name: istio-csr-ca-configmap
              readOnly: true
          serviceAccountName: istiod
          volumes:
          - emptyDir:
              medium: Memory
            name: local-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	}
    
    	return nil
    }
    
    // WriteCSR writes the pem-encoded CSR data to csrPath.
    // The CSR file will be created with file mode 0600.
    // If the CSR file already exists, it will be overwritten.
    // The parent directory of the csrPath will be created as needed with file mode 0700.
    func WriteCSR(csrDir, name string, csr *x509.CertificateRequest) error {
    	if csr == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. pkg/testcerts/generate-certs.sh

    openssl req -new -key ServerKey.pem -out server.csr -subj "/CN=${CN_BASE}_server" -config server.conf
    openssl x509 -req -in server.csr -CA CACert.pem -CAkey CAKey.pem -CAcreateserial -out ServerCert.pem -days 100000 -extensions v3_req -extfile server.conf
    
    # Create a client certificate
    openssl genrsa -out ClientKey.pem 2048
    openssl req -new -key ClientKey.pem -out client.csr -subj "/CN=${CN_BASE}_client" -config client.conf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/invalid-utf8-public-key.asc

    CAAgFiEEiybxTePKQyXbjvbPBbVeIBuFJTwFAmFWykACGwwACgkQBbVeIBuFJTyN
    aQP/bwhfZ6jRHooHF50X6DLNNHLndiMy3Qo6AzyfwKQsk7Qp1ePd7Rd3syNAj41O
    NVFiWeztpDlJl2eE0fi/KYUzodtKXDKCtOux5HYpLN4CVvseDaGeLSVJKE29lV1B
    Aa/SY4RrJ5EGNUV+qnRVewsUm6qZykGQq4skPdXUaE9uuEQ=
    =CPFR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top