Support for IP addresses encoded as strings in CNs/DNS SANs

This commit is contained in:
Andrew Ayer 2016-05-02 11:38:08 -07:00
parent 82167b8151
commit df5ad71a40
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ func NewIdentifiers () *Identifiers {
}
}
func parseIPAddrString (str string) net.IP { // TODO
return nil
func parseIPAddrString (str string) net.IP {
return net.ParseIP(str)
}
func isASCIIString (value []byte) bool {