25 lines
		
	
	
		
			569 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			569 B
		
	
	
	
		
			Go
		
	
	
	
package util
 | 
						|
 | 
						|
import (
 | 
						|
	"crypto/x509"
 | 
						|
	"fmt"
 | 
						|
	"io/ioutil"
 | 
						|
)
 | 
						|
 | 
						|
func GetCertPool(paths []string) (*x509.CertPool, error) {
 | 
						|
	if len(paths) == 0 {
 | 
						|
		return nil, fmt.Errorf("invalid empty list of Root CAs file paths")
 | 
						|
	}
 | 
						|
	pool := x509.NewCertPool()
 | 
						|
	for _, path := range paths {
 | 
						|
		data, err := ioutil.ReadFile(path)
 | 
						|
		if err != nil {
 | 
						|
			return nil, fmt.Errorf("certificate authority file (%s) could not be read - %s", path, err)
 | 
						|
		}
 | 
						|
		if !pool.AppendCertsFromPEM(data) {
 | 
						|
			return nil, fmt.Errorf("loading certificate authority (%s) failed", path)
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return pool, nil
 | 
						|
}
 |