|
post quantum cryptography
Highly optimized implementation of the NTRUEncrypt algorithm
|
header for ntru_string.c More...
#include <stdlib.h>
Go to the source code of this file.
Data Structures | |
| struct | string |
Typedefs | |
| typedef struct string | string |
Functions | |
| void | prints (const string *print_string) |
| void | string_delete (string *del_string) |
header for ntru_string.c
Header for the external API of ntru_string.c.
Definition in file ntru_string.h.
Definition at line 35 of file ntru_string.h.
Prints the given string to stdout.
| print_string | the print to string |
Definition at line 37 of file ntru_string.c.
| void string_delete | ( | string * | del_string | ) |
Delete the inner structure of the string and frees the string itself from the heap. Must not be called on stack variables.
| del_string | the string to delete |
Definition at line 47 of file ntru_string.c.
1.7.6.1