Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getSubjectAltNames (0.07 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

        return true
      }
    
      fun allSubjectAltNames(certificate: X509Certificate): List<String> {
        val altIpaNames = getSubjectAltNames(certificate, ALT_IPA_NAME)
        val altDnsNames = getSubjectAltNames(certificate, ALT_DNS_NAME)
        return altIpaNames + altDnsNames
      }
    
      private fun getSubjectAltNames(
        certificate: X509Certificate,
        type: Int,
      ): List<String> {
        try {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top