| 41 | }; |
| 42 | |
| 43 | TEST_F(CryptTests, SHA1_Basic) |
| 44 | { |
| 45 | std::string input = "The quick brown fox jumped over the lazy dog."; |
| 46 | auto result = Crypt::SHA1(input.data(), input.size()); |
| 47 | AssertHash("c0854fb9fb03c41cce3802cb0d220529e6eef94e", result); |
| 48 | } |
| 49 | |
| 50 | TEST_F(CryptTests, SHA1_Multiple) |
| 51 | { |
nothing calls this directly
no test coverage detected