| 160 | } |
| 161 | |
| 162 | int main() |
| 163 | { |
| 164 | std::cout << "CHOC xxHash Example\n"; |
| 165 | std::cout << "===================\n\n"; |
| 166 | |
| 167 | std::cout << "xxHash is a fast, high-quality hashing algorithm.\n"; |
| 168 | std::cout << "This example demonstrates various features and use cases.\n\n"; |
| 169 | |
| 170 | demonstrateBasicHashing(); |
| 171 | demonstrateHashConsistency(); |
| 172 | demonstrateSeedVariation(); |
| 173 | demonstrateStreamingHash(); |
| 174 | demonstrateCollisionResistance(); |
| 175 | |
| 176 | std::cout << "\n=== Example completed successfully! ===\n"; |
| 177 | |
| 178 | return 0; |
| 179 | } |
nothing calls this directly
no test coverage detected