From 090b27436383e553bd58b765e29effb70790eb9c Mon Sep 17 00:00:00 2001 From: linwiz Date: Fri, 17 Oct 2014 08:52:15 -0400 Subject: [PATCH] Added information to the output of mpw-bench --- MasterPassword/C/mpw-bench.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/MasterPassword/C/mpw-bench.c b/MasterPassword/C/mpw-bench.c index 112f3b7f..bbf218be 100644 --- a/MasterPassword/C/mpw-bench.c +++ b/MasterPassword/C/mpw-bench.c @@ -132,8 +132,10 @@ int main(int argc, char *const argv[]) { iterations = 50000000; uint8_t hash[32]; - for (int i = 0; i < iterations; ++i) + for (int i = 0; i < iterations; ++i) { SHA256_Buf(masterPassword, strlen(masterPassword), hash); + fprintf( stderr, "\riteration %d / %d..", i, iterations ); + } // Output timing results. if (gettimeofday(&endTime, NULL) != 0) { @@ -153,8 +155,10 @@ int main(int argc, char *const argv[]) { int bcrypt_cost = 9; iterations = 600; - for (int i = 0; i < iterations; ++i) + for (int i = 0; i < iterations; ++i) { crypt(masterPassword, crypt_gensalt("$2b$", bcrypt_cost, userName, strlen(userName))); + fprintf( stderr, "\riteration %d / %d..", i, iterations ); + } // Output timing results. if (gettimeofday(&endTime, NULL) != 0) {