diff options
author | Martin Willi <martin@strongswan.org> | 2009-06-16 09:54:28 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-06-16 09:54:28 +0200 |
commit | 26999f2511b7d6b9bfc8db9dd94b87ec88b44e88 (patch) | |
tree | e0facf9ab54c6f007eecbe2f935d56cacfd13415 /src/libstrongswan/crypto | |
parent | 72e174f9665f490cdfe19e6839377590873a2dec (diff) | |
download | strongswan-26999f2511b7d6b9bfc8db9dd94b87ec88b44e88.tar.bz2 strongswan-26999f2511b7d6b9bfc8db9dd94b87ec88b44e88.tar.xz |
increased verbosity of successful crypto tests
Diffstat (limited to 'src/libstrongswan/crypto')
-rw-r--r-- | src/libstrongswan/crypto/crypto_tester.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstrongswan/crypto/crypto_tester.c b/src/libstrongswan/crypto/crypto_tester.c index 921cff610..977342635 100644 --- a/src/libstrongswan/crypto/crypto_tester.c +++ b/src/libstrongswan/crypto/crypto_tester.c @@ -153,7 +153,7 @@ static bool test_crypter(private_crypto_tester_t *this, } if (!failed) { - DBG2("successfully tested %d test vectors for %N", + DBG1("successfully tested %d test vectors for %N", tested, encryption_algorithm_names, alg); } return !failed; @@ -259,7 +259,7 @@ static bool test_signer(private_crypto_tester_t *this, } if (!failed) { - DBG2("successfully tested %d test vectors for %N", + DBG1("successfully tested %d test vectors for %N", tested, integrity_algorithm_names, alg); } return !failed; @@ -351,7 +351,7 @@ static bool test_hasher(private_crypto_tester_t *this, hash_algorithm_t alg, } if (!failed) { - DBG2("successfully tested %d test vectors for %N", + DBG1("successfully tested %d test vectors for %N", tested, hash_algorithm_names, alg); } return !failed; @@ -454,7 +454,7 @@ static bool test_prf(private_crypto_tester_t *this, } if (!failed) { - DBG2("successfully tested %d testvectors for %N", + DBG1("successfully tested %d testvectors for %N", tested, pseudo_random_function_names, alg); } return !failed; @@ -537,7 +537,7 @@ static bool test_rng(private_crypto_tester_t *this, rng_quality_t quality, } if (!failed) { - DBG2("successfully tested %d testvectors for %N", + DBG1("successfully tested %d testvectors for %N", tested, rng_quality_names, quality); } return !failed; |