Home | History | Annotate | Download | only in openssh

Lines Matching refs:cp

657 	u_char buf[8], *cp;
686 cp = buffer_ptr(&active_state->outgoing_packet);
690 cp[7 - i] = rnd & 0xff;
710 cp = buffer_append_space(&active_state->output,
712 cipher_crypt(&active_state->send_context, cp,
846 u_char type, *cp, *macbuf = NULL;
863 cp = buffer_ptr(&active_state->outgoing_packet);
864 type = cp[5];
908 cp = buffer_append_space(&active_state->outgoing_packet, padlen);
914 cp[i] = rnd & 0xff;
919 memset(cp, 0, padlen);
923 cp = buffer_ptr(&active_state->outgoing_packet);
924 put_u32(cp, packet_length);
925 cp[4] = padlen;
936 cp = buffer_append_space(&active_state->output,
938 cipher_crypt(&active_state->send_context, cp,
968 u_char type, *cp;
970 cp = buffer_ptr(&active_state->outgoing_packet);
971 type = cp[5];
1147 u_char *cp, type;
1154 cp = buffer_ptr(&active_state->input);
1155 len = get_u32(cp);
1188 cp = buffer_append_space(&active_state->incoming_packet, padded_len);
1189 cipher_crypt(&active_state->receive_context, cp,
1211 cp
1212 stored_checksum = get_u32(cp);
1238 u_char *macbuf, *cp, type;
1263 cp = buffer_append_space(&active_state->incoming_packet,
1265 cipher_crypt(&active_state->receive_context, cp,
1267 cp = buffer_ptr(&active_state->incoming_packet);
1268 active_state->packlen = get_u32(cp);
1303 cp = buffer_append_space(&active_state->incoming_packet, need);
1304 cipher_crypt(&active_state->receive_context, cp,
1340 cp = buffer_ptr(&active_state->incoming_packet);
1341 padlen = cp[4];