go-mail/sime.go

13 lines
232 B
Go
Raw Normal View History

package mail
import (
"crypto/rsa"
"crypto/x509"
)
// SMimeAuthConfig represents the authentication type for s/mime crypto key material
type SMimeAuthConfig struct {
Certificate *x509.Certificate
PrivateKey *rsa.PrivateKey
}