From ecdfbad591029625d619bd66380494c0cab773d4 Mon Sep 17 00:00:00 2001 From: hasufell Date: Wed, 28 May 2014 19:44:49 +0200 Subject: [PATCH] ENC: style fix --- src/encrypt.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/encrypt.c b/src/encrypt.c index 5f488db..568d6fd 100644 --- a/src/encrypt.c +++ b/src/encrypt.c @@ -96,7 +96,12 @@ ntru_encrypt_string( poly_array = ascii_to_bin_poly_arr(msg, ctx); while (*poly_array[i]) { - ntru_encrypt_poly(*poly_array[i], pub_key, rnd, *poly_array[i], ctx); + poly_draw(*poly_array[i]); + ntru_encrypt_poly(*poly_array[i], + pub_key, + rnd, + *poly_array[i], + ctx); i++; }