ENC: style fix

This commit is contained in:
hasufell 2014-05-28 19:44:49 +02:00
parent f0eefe7885
commit ecdfbad591
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 6 additions and 1 deletions

View File

@ -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++;
}