smimea.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package dns
  2. import (
  3. "crypto/sha256"
  4. "crypto/x509"
  5. "encoding/hex"
  6. )
  7. // Sign creates a SMIMEA record from an SSL certificate.
  8. func (r *SMIMEA) Sign(usage, selector, matchingType int, cert *x509.Certificate) (err error) {
  9. r.Hdr.Rrtype = TypeSMIMEA
  10. r.Usage = uint8(usage)
  11. r.Selector = uint8(selector)
  12. r.MatchingType = uint8(matchingType)
  13. r.Certificate, err = CertificateToDANE(r.Selector, r.MatchingType, cert)
  14. if err != nil {
  15. return err
  16. }
  17. return nil
  18. }
  19. // Verify verifies a SMIMEA record against an SSL certificate. If it is OK
  20. // a nil error is returned.
  21. func (r *SMIMEA) Verify(cert *x509.Certificate) error {
  22. c, err := CertificateToDANE(r.Selector, r.MatchingType, cert)
  23. if err != nil {
  24. return err // Not also ErrSig?
  25. }
  26. if r.Certificate == c {
  27. return nil
  28. }
  29. return ErrSig // ErrSig, really?
  30. }
  31. // SMIMEAName returns the ownername of a SMIMEA resource record as per the
  32. // format specified in RFC 'draft-ietf-dane-smime-12' Section 2 and 3
  33. func SMIMEAName(email, domain string) (string, error) {
  34. hasher := sha256.New()
  35. hasher.Write([]byte(email))
  36. // RFC Section 3: "The local-part is hashed using the SHA2-256
  37. // algorithm with the hash truncated to 28 octets and
  38. // represented in its hexadecimal representation to become the
  39. // left-most label in the prepared domain name"
  40. return hex.EncodeToString(hasher.Sum(nil)[:28]) + "." + "_smimecert." + domain, nil
  41. }