dns/nsec3_test.go

12 lines
173 B
Go
Raw Normal View History

2011-03-07 21:47:20 +00:00
package dns
import (
"testing"
)
func TestPackNsec3(t *testing.T) {
nsec3 := Nsec3Hash("dnsex.nl", 1, 0, "DEAD")
t.Logf("%v\n", nsec3)
t.Fail()
}