remodified gitignore and defined function "ntru_decrypt(..)"

This commit is contained in:
Christoph Prüßner 2014-04-23 13:45:03 +02:00
parent 00513d6701
commit 74ddfe65e7
2 changed files with 5 additions and 2 deletions

2
.gitignore vendored
View File

@ -20,4 +20,4 @@ latex/
src/main.c
src/main
.settings/org.eclipse*
./.settings/org.eclipse*

View File

@ -22,6 +22,9 @@
#ifndef NTRU_DECRYPT_H
#define NTRU_DECRYPT_H
/*int ntru_decrypt(char* encr_msg, pb_poly private_key);*/
#include "poly.h"
#include "context.h"
int ntru_decrypt(char *encr_msg, pb_poly *private_key, ntru_context *context, char ** decr_msg);
#endif /* NTRU_DECRYPT */