We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34fad96 commit a1c55b9Copy full SHA for a1c55b9
hashing/ripemd_160.cpp
@@ -357,7 +357,8 @@ class RIPEMD160 {
357
} // namespace hashing
358
359
/**
360
- * @brief test example hashes
+ * @brief self test implementation
361
+ * @return void
362
*/
363
static void check_me(std::string data, std::string expected_hash) {
364
hashing::RIPEMD160 obj;
@@ -393,7 +394,7 @@ static void test() {
393
394
* @brief main function
395
* @return 0 on exit
396
-int main(int argc, char *argv[]) {
397
- test();
+int main() {
398
+ test(); // run self test implementation
399
return 0;
400
}
0 commit comments