Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AppendCertByte (0.08 sec)

  1. security/pkg/pki/util/generate_csr.go

    			return rootCerts, fmt.Errorf("failed to read root certificates (%v)", err)
    		}
    		rootCerts = AppendCertByte(pemCert, certBytes)
    	}
    	return rootCerts, nil
    }
    
    // AppendCertByte: Append x.509 rootCert in bytes to existing certificate chain (in bytes)
    func AppendCertByte(pemCert []byte, rootCert []byte) []byte {
    	rootCerts := []byte{}
    	if len(pemCert) > 0 {
    		// Copy the input certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top