Small library providing ecrypt functionalities for other C programs
include | ||
src | ||
config.mk | ||
Makefile | ||
README |
+ libecrypt A library which provides a random string generation function. + Usage #include <libecrypt.h> int main() { ecrypt(PASSWD_LENGTH); } (user)$ gcc prog.c -L. -lecrypt -o prog + Installation Run 'make' to create the static library. Run 'make install' to install the static library and header.