Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CipherSuiteName (0.32 sec)

  1. 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)
Back to top