[BACK]Return to packet.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/packet.c between version 1.194 and 1.195

version 1.194, 2014/04/28 03:09:18 version 1.195, 2014/04/29 18:01:49
Line 621 
Line 621 
         buffer_append(&active_state->outgoing_packet, buf, len);          buffer_append(&active_state->outgoing_packet, buf, len);
 }  }
   
   #ifdef WITH_OPENSSL
 void  void
 packet_put_bignum(BIGNUM * value)  packet_put_bignum(BIGNUM * value)
 {  {
Line 638 
Line 639 
 {  {
         buffer_put_ecpoint(&active_state->outgoing_packet, curve, point);          buffer_put_ecpoint(&active_state->outgoing_packet, curve, point);
 }  }
   #endif
   
 /*  /*
  * Finalizes and sends the packet.  If the encryption key has been set,   * Finalizes and sends the packet.  If the encryption key has been set,
Line 1557 
Line 1559 
  * must have been initialized before this call.   * must have been initialized before this call.
  */   */
   
   #ifdef WITH_OPENSSL
 void  void
 packet_get_bignum(BIGNUM * value)  packet_get_bignum(BIGNUM * value)
 {  {
Line 1574 
Line 1577 
 {  {
         buffer_get_ecpoint(&active_state->incoming_packet, curve, point);          buffer_get_ecpoint(&active_state->incoming_packet, curve, point);
 }  }
   #endif
   
 void *  void *
 packet_get_raw(u_int *length_ptr)  packet_get_raw(u_int *length_ptr)

Legend:
Removed from v.1.194  
changed lines
  Added in v.1.195