Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for certPem (0.25 sec)

  1. docs/site-replication/run-ssec-object-replication.sh

    TEST_MINIO_ENC_KEY="MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MDA"
    
    # Create certificates for TLS enabled MinIO
    echo -n "Setup certs for MinIO instances ..."
    wget -O certgen https://github.com/minio/certgen/releases/latest/download/certgen-linux-amd64 && chmod +x certgen
    ./certgen --host localhost
    mkdir -p /tmp/certs
    mv public.crt /tmp/certs || sudo mv public.crt /tmp/certs
    mv private.key /tmp/certs || sudo mv private.key /tmp/certs
    echo "done"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. tests/integration/security/ecc_signature_algorithm/mtls_strict_test.go

    			client.CallOrFail(t, echo.CallOptions{
    				To: server,
    				Port: echo.Port{
    					Name: "http",
    				},
    				Count: 1,
    				Check: check.OK(),
    			})
    
    			certPEMs := cert.DumpCertFromSidecar(t, client, server, "http")
    			block, _ := pem.Decode([]byte(strings.Join(certPEMs, "\n")))
    			if block == nil { // nolint: staticcheck
    				t.Fatalf("failed to parse certificate PEM")
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/crypto/x509/root_darwin.go

    		}
    	}
    
    	chain := [][]*Certificate{{}}
    	numCerts := macOS.SecTrustGetCertificateCount(trustObj)
    	for i := 0; i < numCerts; i++ {
    		certRef, err := macOS.SecTrustGetCertificateAtIndex(trustObj, i)
    		if err != nil {
    			return nil, err
    		}
    		cert, err := exportCertificate(certRef)
    		if err != nil {
    			return nil, err
    		}
    		chain[0] = append(chain[0], cert)
    	}
    	if len(chain[0]) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_tls13.go

    				return err
    			}
    		}
    		return nil
    	}
    
    	msg, err := c.readHandshake(hs.transcript)
    	if err != nil {
    		return err
    	}
    
    	certReq, ok := msg.(*certificateRequestMsgTLS13)
    	if ok {
    		hs.certReq = certReq
    
    		msg, err = c.readHandshake(hs.transcript)
    		if err != nil {
    			return err
    		}
    	}
    
    	certMsg, ok := msg.(*certificateMsgTLS13)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. docs/tls/README.md

    * MinIO doesn't currently support PFX certificates.
    
    ### 3.1 Use `certgen` to Generate a Certificate
    
    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"
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. src/crypto/x509/hybrid_pool_test.go

    		NotAfter:     time.Now().Add(time.Hour * 10),
    		DNSNames:     []string{"example.com"},
    	}
    	certDER, err := x509.CreateCertificate(rand.Reader, certTmpl, rootTmpl, k.Public(), k)
    	if err != nil {
    		t.Fatalf("failed to create test cert: %s", err)
    	}
    	cert, err := x509.ParseCertificate(certDER)
    	if err != nil {
    		t.Fatalf("failed to parse test cert: %s", err)
    	}
    
    	_, err = cert.Verify(opts)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server.go

    			return err
    		}
    	}
    
    	var certReq *certificateRequestMsg
    	if c.config.ClientAuth >= RequestClientCert {
    		// Request a client certificate
    		certReq = new(certificateRequestMsg)
    		certReq.certificateTypes = []byte{
    			byte(certTypeRSASign),
    			byte(certTypeECDSASign),
    		}
    		if c.vers >= VersionTLS12 {
    			certReq.hasSignatureAlgorithm = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/crypto/tls/quic_test.go

    		t.Fatalf("error during connection handshake: %v", err)
    	}
    
    	certReq := new(certificateRequestMsgTLS13)
    	certReq.ocspStapling = true
    	certReq.scts = true
    	certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
    	certReqBytes, err := certReq.marshal()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := cli.conn.HandleData(QUICEncryptionLevelApplication, append([]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/crypto/x509/platform_test.go

    			t.Parallel()
    			parent := testRoot
    			if tc.selfSigned {
    				parent = tc.cert
    			}
    			certDER, err := CreateCertificate(rand.Reader, tc.cert, parent, leafKey.Public(), testRootKey)
    			if err != nil {
    				t.Fatalf("CreateCertificate failed: %s", err)
    			}
    			cert, err := ParseCertificate(certDER)
    			if err != nil {
    				t.Fatalf("ParseCertificate failed: %s", err)
    			}
    
    			var opts VerifyOptions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 17:18:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_tls13.go

    		// Request a client certificate
    		certReq := new(certificateRequestMsgTLS13)
    		certReq.ocspStapling = true
    		certReq.scts = true
    		certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
    		if c.config.ClientCAs != nil {
    			certReq.certificateAuthorities = c.config.ClientCAs.Subjects()
    		}
    
    		if _, err := hs.c.writeHandshakeRecord(certReq, hs.transcript); err != nil {
    			return err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top