documentation

This commit is contained in:
Miek Gieben 2012-09-14 11:45:48 +02:00
parent ca4d0dc3cc
commit 646ce89f6d
1 changed files with 3 additions and 2 deletions

View File

@ -49,8 +49,9 @@ func (r *RR_TLSA) Sign(usage, selector, matchingType int, cert *x509.Certificate
return nil
}
// Verify verifies a TLSA record against a SSL certificate.
func (r *RR_TLSA) Verify() error {
// Verify verifies a TLSA record against a SSL certificate. If it is OK
// a nil error is returned.
func (r *RR_TLSA) Verify(cert *x509.Certifcate) error {
return nil
}