mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-22 13:50:49 +01:00
23 lines
491 B
Go
23 lines
491 B
Go
package mail
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
)
|
|
|
|
const (
|
|
certFilePath = "dummy-chain-cert.pem"
|
|
keyFilePath = "dummy-child-key.pem"
|
|
)
|
|
|
|
// getDummyCertificate loads a certificate and a private key form local disk for testing purposes
|
|
func getDummyCertificate() (*tls.Certificate, error) {
|
|
keyPair, err := tls.LoadX509KeyPair(certFilePath, keyFilePath)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
keyPair.Leaf, err = x509.ParseCertificate(keyPair.Certificate[0])
|
|
|
|
return &keyPair, nil
|
|
}
|