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

Diff for /src/usr.bin/ssh/Attic/bufaux.h between version 1.1 and 1.2

version 1.1, 1999/09/26 20:53:34 version 1.2, 1999/09/28 04:45:36
Line 18 
Line 18 
   
 #include "buffer.h"  #include "buffer.h"
   
 /* Stores an MP_INT in the buffer with a 2-byte msb first bit count, followed  /* Stores an BIGNUM in the buffer with a 2-byte msb first bit count, followed
    by (bits+7)/8 bytes of binary data, msb first. */     by (bits+7)/8 bytes of binary data, msb first. */
 void buffer_put_mp_int(Buffer *buffer, MP_INT *value);  void buffer_put_bignum(Buffer *buffer, BIGNUM *value);
   
 /* Retrieves an MP_INT from the buffer. */  /* Retrieves an BIGNUM from the buffer. */
 int buffer_get_mp_int(Buffer *buffer, MP_INT *value);  int buffer_get_bignum(Buffer *buffer, BIGNUM *value);
   
 /* Returns an integer from the buffer (4 bytes, msb first). */  /* Returns an integer from the buffer (4 bytes, msb first). */
 unsigned int buffer_get_int(Buffer *buffer);  unsigned int buffer_get_int(Buffer *buffer);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2