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

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

version 1.1, 2014/04/30 05:29:56 version 1.2, 2014/06/10 21:46:11
Line 206 
Line 206 
  */   */
 int     sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM *v);  int     sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM *v);
 int     sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v);  int     sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v);
 int     sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g);  
 int     sshbuf_get_eckey(struct sshbuf *buf, EC_KEY *v);  
 int     sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);  int     sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);
 int     sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v);  int     sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v);
   int     sshbuf_put_bignum2_bytes(struct sshbuf *buf, const void *v, size_t len);
   int     sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g);
   int     sshbuf_get_eckey(struct sshbuf *buf, EC_KEY *v);
 int     sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g);  int     sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g);
 int     sshbuf_put_eckey(struct sshbuf *buf, const EC_KEY *v);  int     sshbuf_put_eckey(struct sshbuf *buf, const EC_KEY *v);
 int     sshbuf_put_bignum2_bytes(struct sshbuf *buf, const void *v, size_t len);  
   
 /* Dump the contents of the buffer to stderr in a human-readable format */  /* Dump the contents of the buffer to stderr in a human-readable format */
 void    sshbuf_dump(struct sshbuf *buf, FILE *f);  void    sshbuf_dump(struct sshbuf *buf, FILE *f);

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