mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-22 13:50:49 +01:00
13 lines
232 B
Go
13 lines
232 B
Go
|
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
|
||
|
}
|