| 66 | } |
| 67 | |
| 68 | static void TestHMACSHA512(const std::string &hexkey, const std::string &hexin, const std::string &hexout) { |
| 69 | std::vector<unsigned char> key = ParseHex(hexkey); |
| 70 | TestVector(CHMAC_SHA512(key.data(), key.size()), ParseHex(hexin), ParseHex(hexout)); |
| 71 | } |
| 72 | |
| 73 | static void TestAES256(const std::string &hexkey, const std::string &hexin, const std::string &hexout) |
| 74 | { |
no test coverage detected