Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 251 for cpsr (1.01 sec)

  1. tools/certs/Makefile.k8s.mk

    .SUFFIXES: .csr .pem .conf
    .PRECIOUS: %/ca-key.pem %/ca-cert.pem %/cert-chain.pem
    .PRECIOUS: %/workload-cert.pem %/key.pem %/workload-cert-chain.pem
    .SECONDARY: root-cert.csr root-ca.conf %/cluster-ca.csr %/intermediate.conf
    
    .DEFAULT_GOAL := help
    
    SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
    
    include $(SELF_DIR)common.mk
    
    #------------------------------------------------------------------------
    ##help:		print this help message
    .PHONY: help
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. plugin/pkg/admission/certificates/subjectrestriction/admission.go

    	}
    
    	if csr.Spec.SignerName != certificatesv1beta1.KubeAPIServerClientSignerName {
    		return nil
    	}
    
    	csrParsed, err := certificatesapi.ParseCSR(csr.Spec.Request)
    	if err != nil {
    		return admission.NewForbidden(a, fmt.Errorf("failed to parse CSR: %v", err))
    	}
    
    	for _, group := range csrParsed.Subject.Organization {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 05 22:45:34 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  3. security/pkg/server/ca/monitoring.go

    		"The number of errors occurred when parsing the CSR.",
    	)
    
    	idExtractionErrorCounts = monitoring.NewSum(
    		"citadel_server_id_extraction_err_count",
    		"The number of errors occurred when extracting the ID from CSR.",
    	)
    
    	certSignErrorCounts = monitoring.NewSum(
    		"citadel_server_csr_sign_err_count",
    		"The number of errors occurred when signing the CSR.",
    	)
    
    	successCounts = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pkg/apis/certificates/validation/validation_test.go

    	maxLengthSignerName := fmt.Sprintf("%s/%s.%s", maxLengthFQDN, repeatString("a", 63), repeatString("a", 253))
    	tests := map[string]struct {
    		csr  capi.CertificateSigningRequest
    		errs field.ErrorList
    	}{
    		"CSR with empty request data should fail": {
    			csr: capi.CertificateSigningRequest{
    				ObjectMeta: validObjectMeta,
    				Spec: capi.CertificateSigningRequestSpec{
    					Usages:     validUsages,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  5. security/tools/generate_csr/main.go

    	org     = flag.String("organization", "Juju org", "Organization for the cert.")
    	outCsr  = flag.String("out-csr", "csr.pem", "Output csr file.")
    	outPriv = flag.String("out-priv", "priv.pem", "Output private key file.")
    	keySize = flag.Int("key-size", 2048, "Size of the generated private key")
    	ec      = flag.String("ec-sig-alg", "", "Generate an elliptical curve private key with the specified algorithm")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. plugin/pkg/admission/certificates/approval/admission.go

    		return admission.NewForbidden(a, fmt.Errorf("user not permitted to approve requests with signerName %q", csr.Spec.SignerName))
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  7. 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)
  8. security/samples/plugin_ca_certs/gen_certs.sh

    openssl genrsa -out ca-key.pem 2048
    
    echo 'Generate CSR for Istio CA.'
    openssl req -new -key ca-key.pem -out ca-cert.csr -config ca.cfg -batch -sha256
    
    echo 'Sign the cert for Istio CA.'
    openssl x509 -req -days 36500 -in ca-cert.csr -sha256 -CA root-cert.pem -CAkey root-key.pem -CAcreateserial -out ca-cert.pem -extensions v3_req -extfile ca.cfg
    
    rm ./*csr
    rm ./*srl
    
    echo 'Generate cert chain file.'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/internal/obj/arm/a.out.go

    	MAXREG
    )
    
    const (
    	C_NONE = iota
    	C_REG
    	C_REGREG
    	C_REGREG2
    	C_REGLIST
    	C_SHIFT     /* register shift R>>x */
    	C_SHIFTADDR /* memory address with shifted offset R>>x(R) */
    	C_FREG
    	C_PSR
    	C_FCR
    	C_SPR /* REG_MB_SY */
    
    	C_RCON   /* 0xff rotated */
    	C_NCON   /* ~RCON */
    	C_RCON2A /* OR of two disjoint C_RCON constants */
    	C_RCON2S /* subtraction of two disjoint C_RCON constants */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top