summaryrefslogtreecommitdiff
path: root/src/util/test_hash_context.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/test_hash_context.c')
-rw-r--r--src/util/test_hash_context.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/test_hash_context.c b/src/util/test_hash_context.c
index e5110f212..4b94e7ffa 100644
--- a/src/util/test_hash_context.c
+++ b/src/util/test_hash_context.c
@@ -31,13 +31,13 @@ int main()
char data[1234];
struct GNUNET_HashCode hc1;
struct GNUNET_HashCode hc2;
- struct TALER_HashContext hctx;
+ struct GNUNET_HashContext hctx;
memset (data, 42, LEN);
- TALER_hash_context_start (&hctx);
- TALER_hash_context_read (&hctx, data, LEN);
- TALER_hash_context_finish (&hctx, &hc1);
+ GNUNET_CRYPTO_hash_context_start (&hctx);
+ GNUNET_CRYPTO_hash_context_read (&hctx, data, LEN);
+ GNUNET_CRYPTO_hash_context_finish (&hctx, &hc1);
GNUNET_CRYPTO_hash (data, LEN, &hc2);