openh264/test/utils/HashFunctions.h

19 lines
480 B
C
Raw Normal View History

2014-01-07 03:23:44 +01:00
#ifndef __HASHFUNCTIONS_H__
#define __HASHFUNCTIONS_H__
#include <stdio.h>
#include <string.h>
#include <gtest/gtest.h>
#include "../sha1.h"
2014-01-07 03:23:44 +01:00
static void CompareHash(const unsigned char* digest, const char* hashStr) {
2014-01-07 03:23:44 +01:00
char hashStrCmp[SHA_DIGEST_LENGTH * 2 + 1];
for (int i = 0; i < SHA_DIGEST_LENGTH; ++i) {
sprintf(&hashStrCmp[i*2], "%.2x", digest[i]);
}
hashStrCmp[SHA_DIGEST_LENGTH * 2] = '\0';
EXPECT_STREQ(hashStr, hashStrCmp);
2014-01-07 03:23:44 +01:00
}
#endif //__HASHFUNCTIONS_H__