Small library providing ecrypt functionalities for other C programs
Go to file
2023-04-05 13:13:53 -04:00
include add header file to avoid implicit declaration warning 2023-04-05 13:13:27 -04:00
src init 2023-03-30 14:14:12 -04:00
config.mk init 2023-03-30 14:14:12 -04:00
Makefile add header file to avoid implicit declaration warning 2023-04-05 13:13:27 -04:00
README add header file to avoid implicit declaration warning 2023-04-05 13:13:53 -04:00

+ 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 static' to compile a static library, or 'make shared' to compile a shared library. Then, run 'make install-static' or 'make install-shared' depending on what you ran previously.