Documentation

This commit is contained in:
Miek Gieben 2012-12-01 12:44:57 +01:00
parent acbbbdece5
commit ffe42637c5
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
// DNSSEC
//
// DNSSEC (DNS Security Extension) adds a layer of security to the DNS. It
// uses public key cryptography to securely sign resource records. The
// uses public key cryptography to sign resource records. The
// public keys are stored in DNSKEY records and the signatures in RRSIG records.
//
// Requesting DNSSEC information for a zone is done by adding the DO (DNSSEC OK) bit
@ -14,7 +14,7 @@
//
// Signature generation, signature verification and key generation are all supported.
// Writing a DNSSEC validating resolver is hard, if you need something like that you
// might want to use the unbound wrapper found at github.com/miekg/unbound .
// might want to use the Unbound wrapper found at github.com/miekg/unbound .
package dns
import (

View File

@ -5,7 +5,7 @@
// Basic use pattern for creating an (empty) OPT RR:
//
// o := new(dns.RR_OPT)
// o.Hdr.Name = "."
// o.Hdr.Name = "." // MUST be the root zone, per definition.
// o.Hdr.Rrtype = dns.TypeOPT
//
// The rdata of an OPT RR consists out of a slice of EDNS0 interfaces. Currently