crypto/x509.Certificate.IPAddresses (field)
8 uses
crypto/x509 (current package)
verify.go#L127: if len(c.IPAddresses) == 0 {
verify.go#L130: for _, san := range c.IPAddresses {
verify.go#L1062: for _, candidate := range c.IPAddresses {
x509.go#L710: IPAddresses []net.IP
x509.go#L1353: out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(e.Value)
x509.go#L1358: if len(out.DNSNames) == 0 && len(out.EmailAddresses) == 0 && len(out.IPAddresses) == 0 && len(out.URIs) == 0 {
x509.go#L1760: if (len(template.DNSNames) > 0 || len(template.EmailAddresses) > 0 || len(template.IPAddresses) > 0 || len(template.URIs) > 0) &&
x509.go#L1767: ret[n].Value, err = marshalSANs(template.DNSNames, template.EmailAddresses, template.IPAddresses, template.URIs)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |