summaryrefslogtreecommitdiff
path: root/slowequals.h
blob: 9e8e3214e55f966944859be8f0208d176c705ea9 (plain)
1
2
3
4
5
/* Implements a constant time version of strcmp()
 * Will return 1 if a and b are equal, 0 if they are not */
int slow_equals(const char* a, const char* b);