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

Diff for /src/usr.bin/ssh/Attic/key.c between version 1.88 and 1.89

version 1.88, 2010/05/07 11:30:29 version 1.89, 2010/07/13 11:52:06
Line 48 
Line 48 
 #include "uuencode.h"  #include "uuencode.h"
 #include "buffer.h"  #include "buffer.h"
 #include "log.h"  #include "log.h"
   #include "misc.h"
 #include "ssh2.h"  #include "ssh2.h"
   
 static struct KeyCert *  static struct KeyCert *
Line 223 
Line 224 
                 return 0;                  return 0;
         if (buffer_len(&a->certblob) != buffer_len(&b->certblob))          if (buffer_len(&a->certblob) != buffer_len(&b->certblob))
                 return 0;                  return 0;
         if (memcmp(buffer_ptr(&a->certblob), buffer_ptr(&b->certblob),          if (timing_safe_cmp(buffer_ptr(&a->certblob), buffer_ptr(&b->certblob),
             buffer_len(&a->certblob)) != 0)              buffer_len(&a->certblob)) != 0)
                 return 0;                  return 0;
         return 1;          return 1;

Legend:
Removed from v.1.88  
changed lines
  Added in v.1.89