12 lines
181 B
C
12 lines
181 B
C
#ifndef LIBECRYPT_H_
|
|
#define LIBECRYPT_H_
|
|
|
|
/* Global variables */
|
|
int key_status;
|
|
|
|
/* Functions */
|
|
int ecrypt_gen(int N);
|
|
int ecrypt_check(char *firstkey, char *secondkey);
|
|
|
|
#endif
|