[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.89 and 1.90

version 1.89, 2010/07/13 11:52:06 version 1.90, 2010/07/13 23:13:16
Line 224 
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 (timing_safe_cmp(buffer_ptr(&a->certblob), buffer_ptr(&b->certblob),          if (timingsafe_bcmp(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.89  
changed lines
  Added in v.1.90