Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CipherSuiteName (0.22 sec)

  1. pkg/test/echo/server/forwarder/tls.go

    	}
    
    	cs := conn.ConnectionState()
    	echo.LatencyField.WriteForRequest(&msgBuilder, requestID, fmt.Sprintf("%v", time.Since(start)))
    	echo.CipherField.WriteForRequest(&msgBuilder, requestID, tls.CipherSuiteName(cs.CipherSuite))
    	echo.TLSVersionField.WriteForRequest(&msgBuilder, requestID, versionName(cs.Version))
    	echo.TLSServerName.WriteForRequest(&msgBuilder, requestID, cs.ServerName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    		}
    
    		if got := CipherSuiteName(c.id); got != cc.Name {
    			t.Errorf("%#04x: unexpected CipherSuiteName: got %q, expected %q", c.id, got, cc.Name)
    		}
    	}
    
    	if got := CipherSuiteName(0xabc); got != "0x0ABC" {
    		t.Errorf("unexpected fallback CipherSuiteName: got %q, expected 0x0ABC", got)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. src/crypto/tls/cipher_suites.go

    	}
    }
    
    // CipherSuiteName returns the standard name for the passed cipher suite ID
    // (e.g. "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"), or a fallback representation
    // of the ID value if the cipher suite is not implemented by this package.
    func CipherSuiteName(id uint16) string {
    	for _, c := range CipherSuites() {
    		if c.ID == id {
    			return c.Name
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CipherSuite", Type, 14},
    		{"CipherSuite.ID", Field, 14},
    		{"CipherSuite.Insecure", Field, 14},
    		{"CipherSuite.Name", Field, 14},
    		{"CipherSuite.SupportedVersions", Field, 14},
    		{"CipherSuiteName", Func, 14},
    		{"CipherSuites", Func, 14},
    		{"Client", Func, 0},
    		{"ClientAuthType", Type, 0},
    		{"ClientHelloInfo", Type, 4},
    		{"ClientHelloInfo.CipherSuites", Field, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.14.txt

    pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 = 52392
    pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 uint16
    pkg crypto/tls, func CipherSuiteName(uint16) string
    pkg crypto/tls, func CipherSuites() []*CipherSuite
    pkg crypto/tls, func InsecureCipherSuites() []*CipherSuite
    pkg crypto/tls, method (*CertificateRequestInfo) SupportsCertificate(*Certificate) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
Back to top