From 7eef4f2951dbdf158ab952f5cf54d4956b4b81cb Mon Sep 17 00:00:00 2001 From: surtur Date: Sun, 24 Oct 2021 22:11:29 +0200 Subject: [PATCH] add do_crypto declaration --- generator.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/generator.h b/generator.h index 3dadd63..c549d89 100644 --- a/generator.h +++ b/generator.h @@ -9,6 +9,8 @@ struct G_state; /* initializes generator */ G_state *initialize_generator(); +std::string do_crypto(long k, long c); + G_state generate_blocks(G_state G, int k_blocks); /* returns output of 0 <= n <= 2^20 bytes */