tlsa.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package dns
  2. import (
  3. "crypto/x509"
  4. "net"
  5. "strconv"
  6. )
  7. // Sign creates a TLSA record from an SSL certificate.
  8. func (r *TLSA) Sign(usage, selector, matchingType int, cert *x509.Certificate) (err error) {
  9. r.Hdr.Rrtype = TypeTLSA
  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 TLSA record against an SSL certificate. If it is OK
  20. // a nil error is returned.
  21. func (r *TLSA) 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. // TLSAName returns the ownername of a TLSA resource record as per the
  32. // rules specified in RFC 6698, Section 3.
  33. func TLSAName(name, service, network string) (string, error) {
  34. if !IsFqdn(name) {
  35. return "", ErrFqdn
  36. }
  37. p, err := net.LookupPort(network, service)
  38. if err != nil {
  39. return "", err
  40. }
  41. return "_" + strconv.Itoa(p) + "._" + network + "." + name, nil
  42. }