| 55 | static void TestSHA256(const std::string &in, const std::string &hexout) { TestVector(CSHA256(), in, ParseHex(hexout));} |
| 56 | static void TestSHA512(const std::string &in, const std::string &hexout) { TestVector(CSHA512(), in, ParseHex(hexout));} |
| 57 | static void TestRIPEMD160(const std::string &in, const std::string &hexout) { TestVector(CRIPEMD160(), in, ParseHex(hexout));} |
| 58 | |
| 59 | static void TestHMACSHA256(const std::string &hexkey, const std::string &hexin, const std::string &hexout) { |
| 60 | std::vector<unsigned char> key = ParseHex(hexkey); |
no test coverage detected