fix stuff

This commit is contained in:
Liam Waldron 2023-05-11 12:17:27 -04:00
parent 8aad22c7d1
commit d6f3e860f6
3 changed files with 21 additions and 3 deletions

6
README
View File

@ -4,13 +4,13 @@ A library which provides a random string generation function.
+ Usage
#include <libecrypt.h>
#include <ecrypt.h>
int main() {
ecrypt(PASSWD_LENGTH);
ecrypt(LENGTH);
}
(user)$ gcc prog.c -L. -lecrypt -o prog
(user)$ gcc prog.c -lecrypt -o prog
+ Installation

18
man/libecrypt.3 Normal file
View File

@ -0,0 +1,18 @@
.\" Manpage for libecrypt.
.TH man 3 "11 May 2023" "1.0" "Everest Linux Libraries Manual"
.SH NAME
libecrypt \- random string generation library
.SH SYNOPSIS
#include <ecrypt.h>
ecrypt(LENGTH);
(user)$ gcc -lecrypt prog.c -o prog
.SH DESCRIPTION
libecrypt is a library that provides random string generation, similar to ecyrpt(1). It is provided as a static library only.
.SH SEE ALSO
libcolor(3)
.SH BUGS
Report all bugs on the issues page at https://git.everestlinux.org/EverestLinux/libecrypt
.SH AUTHOR
Liam Waldron (liamwaldron@everestlinux.org)