mirror of
https://github.com/emersion/go-msgauth
synced 2026-07-03 15:28:34 +00:00
git-subtree-dir: dkim git-subtree-mainline:f95f9ea0dcgit-subtree-split:297ee3f7c0
11 lines
175 B
Go
11 lines
175 B
Go
// Package dkim creates and verifies DKIM signatures, as specified in RFC 6376.
|
|
package dkim
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
var now = time.Now
|
|
|
|
const headerFieldName = "DKIM-Signature"
|