| 5 | |
| 6 | template<size_t BufferSize = SHA256_MAXSTRSIZE> |
| 7 | static void ExpectSha256(SHA256_DIGEST Actual, const char *pWanted) |
| 8 | { |
| 9 | char aActual[BufferSize]; |
| 10 | sha256_str(Actual, aActual, sizeof(aActual)); |
| 11 | EXPECT_STREQ(aActual, pWanted); |
| 12 | } |
| 13 | |
| 14 | TEST(Hash, Sha256) |
| 15 | { |
no test coverage detected