| 147 | } |
| 148 | |
| 149 | std::vector<unsigned char> cmCryptoHash::ByteHashString(cm::string_view input) |
| 150 | { |
| 151 | this->Initialize(); |
| 152 | this->Append(input); |
| 153 | return this->Finalize(); |
| 154 | } |
| 155 | |
| 156 | std::vector<unsigned char> cmCryptoHash::ByteHashStream(std::istream& sin) |
| 157 | { |
no test coverage detected