| 187 | } |
| 188 | |
| 189 | std::vector<unsigned char> cmCryptoHash::ByteHashFile(std::string const& file) |
| 190 | { |
| 191 | cmsys::ifstream fin(file.c_str(), std::ios::in | std::ios::binary); |
| 192 | return this->ByteHashStream(fin); |
| 193 | } |
| 194 | |
| 195 | std::string cmCryptoHash::HashString(cm::string_view input) |
| 196 | { |
no test coverage detected