Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for noEKMBecauseNoEMS (0.42 sec)

  1. src/crypto/tls/prf.go

    	return nil, errors.New("crypto/tls: ExportKeyingMaterial is unavailable when renegotiation is enabled")
    }
    
    // noEKMBecauseNoEMS is used as a value of ConnectionState.ekm when Extended
    // Master Secret is not negotiated and thus we wish to fail all key-material
    // export requests.
    func noEKMBecauseNoEMS(label string, context []byte, length int) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    		state.ekm = func(label string, context []byte, length int) ([]byte, error) {
    			if tlsunsafeekm.Value() == "1" {
    				tlsunsafeekm.IncNonDefault()
    				return c.ekm(label, context, length)
    			}
    			return noEKMBecauseNoEMS(label, context, length)
    		}
    	} else {
    		state.ekm = c.ekm
    	}
    	state.ECHAccepted = c.echAccepted
    	return state
    }
    
    // OCSPResponse returns the stapled OCSP response from the TLS server, if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top