mirror of
https://github.com/SSLMate/certspotter.git
synced 2026-01-31 17:54:21 +01:00
Support for IP addresses encoded as strings in CNs/DNS SANs
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user