crypto/tls.clientKeyExchangeMsg.ciphertext (field)

20 uses

	crypto/tls (current package)
		handshake_messages.go#L1507: 	ciphertext []byte
		handshake_messages.go#L1514: 	length := len(m.ciphertext)
		handshake_messages.go#L1520: 	copy(x[4:], m.ciphertext)
		handshake_messages.go#L1535: 	m.ciphertext = data[4:]
		key_agreement.go#L30: 	if len(ckx.ciphertext) < 2 {
		key_agreement.go#L33: 	ciphertextLen := int(ckx.ciphertext[0])<<8 | int(ckx.ciphertext[1])
		key_agreement.go#L34: 	if ciphertextLen != len(ckx.ciphertext)-2 {
		key_agreement.go#L37: 	ciphertext := ckx.ciphertext[2:]
		key_agreement.go#L75: 	ckx.ciphertext = make([]byte, len(encrypted)+2)
		key_agreement.go#L76: 	ckx.ciphertext[0] = byte(len(encrypted) >> 8)
		key_agreement.go#L77: 	ckx.ciphertext[1] = byte(len(encrypted))
		key_agreement.go#L78: 	copy(ckx.ciphertext[2:], encrypted)
		key_agreement.go#L235: 	if len(ckx.ciphertext) == 0 || int(ckx.ciphertext[0]) != len(ckx.ciphertext)-1 {
		key_agreement.go#L239: 	preMasterSecret := ka.params.SharedKey(ckx.ciphertext[1:])
		key_agreement.go#L285: 	ka.ckx.ciphertext = make([]byte, 1+len(ourPublicKey))
		key_agreement.go#L286: 	ka.ckx.ciphertext[0] = byte(len(ourPublicKey))
		key_agreement.go#L287: 	copy(ka.ckx.ciphertext[1:], ourPublicKey)