From 3cd883d33ec77d4dbbad5f7cdfdea7d6652b4794 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 27 Feb 2017 16:25:32 +0100 Subject: [PATCH] Remove debugging leftover in tests --- test/default/xchacha20.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/default/xchacha20.c b/test/default/xchacha20.c index c02c1bbd..fe4c2da2 100644 --- a/test/default/xchacha20.c +++ b/test/default/xchacha20.c @@ -117,11 +117,6 @@ tv_stream_xchacha20(void) tv->out, strlen(tv->out), NULL, &out_len, NULL); out2 = (unsigned char *) sodium_malloc(out_len); crypto_stream_xchacha20(out2, out_len, nonce, key); - { - char hex[1000]; - sodium_bin2hex(hex, sizeof hex, out2, out_len); - puts(hex); - } assert(memcmp(out, out2, out_len) == 0); crypto_stream_xchacha20_xor(out2, out, out_len, nonce, key); assert(sodium_is_zero(out2, out_len));