- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for SubjectAltNames (0.08 sec)
-
istioctl/pkg/writer/ztunnel/configdump/api.go
Waypoint *GatewayAddress `json:"waypoint,omitempty"` Endpoints map[string]*ZtunnelEndpoint `json:"endpoints"` SubjectAltNames []string `json:"subjectAltNames,omitempty"` IPFamilies string `json:"ipFamilies"` } type PolicyMatch struct { Namespaces []StringMatch `json:"namespaces,omitempty"`
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 30 17:26:39 UTC 2024 - 6.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt
} private fun getSubjectAltNames( certificate: X509Certificate, type: Int, ): List<String> { try { val subjectAltNames = certificate.subjectAlternativeNames ?: return emptyList() val result = mutableListOf<String>() for (subjectAltName in subjectAltNames) { if (subjectAltName == null || subjectAltName.size < 2) continue if (subjectAltName[0] != type) continue
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 14:55:09 UTC 2024 - 7.7K bytes - Viewed (0)