2023-03-30 14:14:12 -04:00
|
|
|
+ libecrypt
|
|
|
|
|
|
|
|
A library which provides a random string generation function.
|
|
|
|
|
|
|
|
+ Usage
|
|
|
|
|
2023-04-05 13:13:53 -04:00
|
|
|
#include <libecrypt.h>
|
|
|
|
|
2023-03-30 14:14:12 -04:00
|
|
|
int main() {
|
|
|
|
ecrypt(PASSWD_LENGTH);
|
|
|
|
}
|
|
|
|
|
2023-03-31 08:06:50 -04:00
|
|
|
(user)$ gcc prog.c -L. -lecrypt -o prog
|
|
|
|
|
2023-03-30 14:14:12 -04:00
|
|
|
+ Installation
|
|
|
|
|
2023-04-05 13:18:23 -04:00
|
|
|
Run 'make' to create the static library. Run 'make install' to install the static library and header.
|