]> git.codecow.com Git - Monocypher.git/commitdiff
removed blake2b speed test
authorLoup Vaillant <loup@loup-vaillant.fr>
Sun, 22 Jan 2017 14:13:29 +0000 (15:13 +0100)
committerLoup Vaillant <loup@loup-vaillant.fr>
Sun, 22 Jan 2017 14:13:29 +0000 (15:13 +0100)
speed_blake2b.c [deleted file]

diff --git a/speed_blake2b.c b/speed_blake2b.c
deleted file mode 100644 (file)
index 83cb2a9..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <stdio.h>
-#include "blake2b.h"
-
-int main()
-{
-    crypto_blake2b_ctx ctx;
-    crypto_blake2b_init(&ctx);
-    uint8_t input[128];
-    for (unsigned i = 0; i < 128; i++) {
-        input[i] = i;
-    }
-    for (unsigned i = 0; i < 5000000; i++) {
-        crypto_blake2b_update(&ctx, input, 128);
-
-    }
-    return 0;
-}