Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CipherSuiteByID (0.24 sec)

  1. src/crypto/tls/tls_test.go

    		}
    	}
    
    	CipherSuiteByID := func(id uint16) *CipherSuite {
    		for _, c := range CipherSuites() {
    			if c.ID == id {
    				return c
    			}
    		}
    		for _, c := range InsecureCipherSuites() {
    			if c.ID == id {
    				return c
    			}
    		}
    		return nil
    	}
    
    	for _, c := range cipherSuites {
    		cc := CipherSuiteByID(c.id)
    		if cc == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top