Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 452 for Usages (0.13 sec)

  1. cmd/kubeadm/app/cmd/token.go

    		ttl = duration.ShortHumanDuration(time.Until(obj.Expires.Time))
    		expires = obj.Expires.Format(time.RFC3339)
    	}
    	ttl = fmt.Sprintf("%-9s", ttl)
    
    	usages := strings.Join(obj.Usages, ",")
    	if len(usages) == 0 {
    		usages = "<none>"
    	}
    	usages = fmt.Sprintf("%-22s", usages)
    
    	description := obj.Description
    	if len(description) == 0 {
    		description = "<none>"
    	}
    	description = fmt.Sprintf("%-56s", description)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    				Usages: []string{"authentication", "signing"},
    			},
    			false,
    		},
    		{
    			"should ignore usages that aren't set to true",
    			"bootstrap-token-abcdef",
    			map[string][]byte{
    				"token-id":                       []byte("abcdef"),
    				"token-secret":                   []byte("abcdef0123456789"),
    				"usage-bootstrap-signing":        []byte("true"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/types.go

    	//  "ipsec end system", "ipsec tunnel", "ipsec user",
    	//  "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"
    	// +listType=atomic
    	Usages []KeyUsage `json:"usages,omitempty" protobuf:"bytes,5,opt,name=usages"`
    
    	// username contains the name of the user that created the CertificateSigningRequest.
    	// Populated by the API server on creation and immutable.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/certlist.go

    			Config: certutil.Config{
    				// TODO: etcd 3.2 introduced an undocumented requirement for ClientAuth usage on the
    				// server cert: https://github.com/etcd-io/etcd/issues/9785#issuecomment-396715692
    				// Once the upstream issue is resolved, this should be returned to only allowing
    				// ServerAuth usage.
    				Usages: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth, x509.ExtKeyUsageClientAuth},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	if err != nil {
    		return nil, fmt.Errorf("unable to generate certificate request: %v", err)
    	}
    
    	usages := []certificatesv1.KeyUsage{
    		certificatesv1.UsageDigitalSignature,
    		certificatesv1.UsageClientAuth,
    	}
    	if _, ok := privateKey.(*rsa.PrivateKey); ok {
    		usages = append(usages, certificatesv1.UsageKeyEncipherment)
    	}
    
    	// The Signer interface contains the Public() method to get the public key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  6. pkg/apis/certificates/types.go

    	//
    	// +optional
    	ExpirationSeconds *int32
    
    	// usages specifies a set of usage contexts the key will be
    	// valid for.
    	// See:
    	//	https://tools.ietf.org/html/rfc5280#section-4.2.1.3
    	//	https://tools.ietf.org/html/rfc5280#section-4.2.1.12
    	Usages []KeyUsage
    
    	// Information about the requesting user.
    	// See user.Info interface for details.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"usages":            "usages specifies a set of key usages requested in the issued certificate.\n\nRequests for TLS client certificates typically request: \"digital signature\", \"key encipherment\", \"client auth\".\n\nRequests for TLS serving certificates typically request: \"key...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	//  "ipsec end system",
    	//  "ipsec tunnel",
    	//  "ipsec user",
    	//  "timestamping",
    	//  "ocsp signing",
    	//  "microsoft sgc",
    	//  "netscape sgc"
    	// +listType=atomic
    	Usages []KeyUsage `json:"usages,omitempty" protobuf:"bytes,5,opt,name=usages"`
    
    	// Information about the requesting user.
    	// See user.Info interface for details.
    	// +optional
    	Username string `json:"username,omitempty" protobuf:"bytes,2,opt,name=username"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1/generated.proto

      //  4. Required, permitted, or forbidden key usages / extended key usages.
      //  5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.
      //  6. Whether or not requests for CA certificates are allowed.
      optional string signerName = 7;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/certificates/v1/generated.proto

      //  4. Required, permitted, or forbidden key usages / extended key usages.
      //  5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.
      //  6. Whether or not requests for CA certificates are allowed.
      optional string signerName = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top