Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for san (0.02 sec)

  1. docs/tls/README.md

    Download [`certgen`](https://github.com/minio/certgen/releases/latest) for your specific operating system and platform.
    
    `certgen` is a simple *Go* tool to generate self-signed certificates, and provides SAN certificates with DNS and IP entries:
    
    ```sh
    ./certgen -host "10.10.0.3,10.10.0.4,10.10.0.5"
    ```
    
    A response similar to this one should be displayed:
    
    ```
    2018/11/21 10:16:18 wrote public.crt
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    }
    
    func (a *Agent) generateNodeMetadata() (*model.Node, error) {
    	var pilotSAN []string
    	if a.proxyConfig.ControlPlaneAuthPolicy == mesh.AuthenticationPolicy_MUTUAL_TLS {
    		// Obtain Pilot SAN, using DNS.
    		pilotSAN = []string{config.GetPilotSan(a.proxyConfig.DiscoveryAddress)}
    	}
    
    	credentialSocketExists, err := checkSocket(context.TODO(), security.CredentialNameSocketPath)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    			// Build the following graph from RFC 4158, figure 7 (note that in this graph edges represent
    			// certificates where the parent is the issuer and the child is the subject.) For the certificate
    			// C->B, use a unconstrained SAN which invalidates the path Trust Anchor -> C -> B -> EE. The
    			// remaining valid paths should be:
    			//   * Trust Anchor -> A -> B -> EE
    			//   * Trust Anchor -> C -> A -> B -> EE
    			//
    			//     +---------+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	return altNames, nil
    }
    
    // GetEtcdAltNames builds an AltNames object for generating the etcd server certificate.
    // `advertise address` and localhost are included in the SAN since this is the interfaces the etcd static pod listens on.
    // The user can override the listen address with `Etcd.ExtraArgs` and add SANs with `Etcd.ServerCertSANs`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      repeated NetworkAddress addresses = 4;
      // Ports for the service.
      // The target_port may be overridden on a per-workload basis.
      repeated Port ports = 5;
      // Optional; if set, the SAN to verify for TLS connections.
      // Typically, this is not set and per-workload identity is used to verify
      // TODO: support this field
      repeated string subject_alt_names = 6;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. docs/vi/docs/features.md

    * 100% <abbr title="Python type annotations, với điều này trình soạn thảo của bạn và các công cụ bên ngoài có thể hỗ trợ bạn tốt hơn">type annotated</abbr> code base.
    * Được sử dụng cho các ứng dụng sản phẩm.
    
    ## Tính năng của Starlette
    
    `FastAPI` is thực sự là một sub-class của `Starlette`. Do đó, nếu bạn đã biết hoặc đã sử dụng Starlette, đa số các chức năng sẽ làm việc giống như vậy.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. security/pkg/pki/util/generate_cert.go

    	IsSelfSigned bool
    
    	// Whether this certificate is for a client.
    	IsClient bool
    
    	// Whether this certificate is for a server.
    	IsServer bool
    
    	// Whether this certificate is for dual-use clients (SAN+CN).
    	IsDualUse bool
    
    	// If true, the private key is encoded with PKCS#8.
    	PKCS8Key bool
    
    	// The type of Elliptical Signature algorithm to use
    	// when generating private keys. Currently only ECDSA is supported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. src/crypto/tls/boring_test.go

    	fipsOK := mode&boringCertFIPSOK != 0
    	return &boringCertificate{name, org, parentOrg, der, cert, key, fipsOK}
    }
    
    // A self-signed test certificate with an RSA key of size 2048, for testing
    // RSA-PSS with SHA512. SAN of example.golang.
    var (
    	testRSA2048Certificate []byte
    	testRSA2048PrivateKey  *rsa.PrivateKey
    )
    
    func init() {
    	block, _ := pem.Decode(obscuretestdata.Rot13([]byte(`
    -----ORTVA PREGVSVPNGR-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

                        value = "California",
                      ),
                    ),
                    listOf(
                      AttributeTypeAndValue(
                        type = localityName,
                        value = "San Francisco",
                      ),
                    ),
                    listOf(
                      AttributeTypeAndValue(
                        type = country,
                        value = "US",
                      ),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. security/pkg/pki/ca/ca.go

    	SigningKeyFile  string
    }
    
    var pkiCaLog = log.RegisterScope("pkica", "Citadel CA log")
    
    // caTypes is the enum for the CA type.
    type caTypes int
    
    type CertOpts struct {
    	// SubjectIDs are used for building the SAN extension for the certificate.
    	SubjectIDs []string
    
    	// TTL is the requested lifetime (Time to live) to be applied in the certificate.
    	TTL time.Duration
    
    	// ForCA indicates whether the signed certificate if for CA.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top