dane.go 997 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package dns
  2. import (
  3. "crypto/sha256"
  4. "crypto/sha512"
  5. "crypto/x509"
  6. "encoding/hex"
  7. "errors"
  8. )
  9. // CertificateToDANE converts a certificate to a hex string as used in the TLSA or SMIMEA records.
  10. func CertificateToDANE(selector, matchingType uint8, cert *x509.Certificate) (string, error) {
  11. switch matchingType {
  12. case 0:
  13. switch selector {
  14. case 0:
  15. return hex.EncodeToString(cert.Raw), nil
  16. case 1:
  17. return hex.EncodeToString(cert.RawSubjectPublicKeyInfo), nil
  18. }
  19. case 1:
  20. h := sha256.New()
  21. switch selector {
  22. case 0:
  23. h.Write(cert.Raw)
  24. return hex.EncodeToString(h.Sum(nil)), nil
  25. case 1:
  26. h.Write(cert.RawSubjectPublicKeyInfo)
  27. return hex.EncodeToString(h.Sum(nil)), nil
  28. }
  29. case 2:
  30. h := sha512.New()
  31. switch selector {
  32. case 0:
  33. h.Write(cert.Raw)
  34. return hex.EncodeToString(h.Sum(nil)), nil
  35. case 1:
  36. h.Write(cert.RawSubjectPublicKeyInfo)
  37. return hex.EncodeToString(h.Sum(nil)), nil
  38. }
  39. }
  40. return "", errors.New("dns: bad MatchingType or Selector")
  41. }