diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-12-08 09:37:43 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-12-08 09:37:43 +0100 |
commit | 94a50fc33e7ee409a991d73f81f26565ce28ef1c (patch) | |
tree | fa87131baafa874b265a4c634d07e04b5ce3a1dc | |
parent | 7118efa59fac5f4d4c7d29548eb40f1ec3532e12 (diff) |
-do not log tokens
-rw-r--r-- | src/backend/taler-merchant-httpd.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c index 550a2ce6..cae16909 100644 --- a/src/backend/taler-merchant-httpd.c +++ b/src/backend/taler-merchant-httpd.c @@ -165,8 +165,7 @@ TMH_check_auth (const char *token, strlen (token), &dec); GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Checking against token %s with salt %s\n", - dec, + "Checking against token with salt %s\n", TALER_B2S (salt)); GNUNET_assert (GNUNET_YES == GNUNET_CRYPTO_kdf (&val, @@ -196,8 +195,7 @@ TMH_compute_auth (const char *token, salt, sizeof (*salt)); GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Computing initial auth using token %s with salt %s\n", - token, + "Computing initial auth using token with salt %s\n", TALER_B2S (salt)); GNUNET_assert (GNUNET_YES == GNUNET_CRYPTO_kdf (hash, |