Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for sha256_hash (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. schema/naming_test.go

    		"UUID":                      "uuid",
    		"HTTPURL":                   "http_url",
    		"HTTP_URL":                  "http_url",
    		"SHA256Hash":                "sha256_hash",
    		"SHA256HASH":                "sha256_hash",
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Tue May 30 02:00:48 GMT 2023
    - 7K bytes
    - Click Count (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt

          var sha1: ByteString? = null
          var sha256: ByteString? = null
    
          for (pin in pins) {
            when (pin.hashAlgorithm) {
              "sha256" -> {
                if (sha256 == null) sha256 = peerCertificate.sha256Hash()
                if (pin.hash == sha256) return // Success!
              }
    
              "sha1" -> {
                if (sha1 == null) sha1 = peerCertificate.sha1Hash()
                if (pin.hash == sha1) return // Success!
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 14.2K bytes
    - Click Count (1)
  3. okhttp/api/android/okhttp.api

    	public fun hashCode ()I
    	public static final fun pin (Ljava/security/cert/Certificate;)Ljava/lang/String;
    	public static final fun sha1Hash (Ljava/security/cert/X509Certificate;)Lokio/ByteString;
    	public static final fun sha256Hash (Ljava/security/cert/X509Certificate;)Lokio/ByteString;
    }
    
    public final class okhttp3/CertificatePinner$Builder {
    	public fun <init> ()V
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 72.3K bytes
    - Click Count (0)
Back to Top