-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John Wingfield
authored
Nov 21, 2018
1 parent
1f0425f
commit 1ebe532
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Trove | ||
===== | ||
This is a simple, secure password database written in C, with a console version for Windows & Linux and a GUI version for Windows. I may add a Linux GUI in future. | ||
The database is encrypted with AES 256 bit using https://github.com/kokke/tiny-AES-c. | ||
---- | ||
_Linux build_ | ||
gcc trove.c shared.c encryption.c aes.c -std=c99 -o trove_cli -D_POSIX_C_SOURCE -Wall -Wextra -Werror -Wno-pointer-sign -O3 | ||
This is a simple, secure password database written in C, with a console version for Windows & Linux and a GUI version for Windows. I may add a Linux GUI in future. The database is encrypted with AES 256 bit using https://github.com/kokke/tiny-AES-c. | ||
---- | ||
_Linux build_ | ||
```gcc trove.c shared.c encryption.c aes.c -std=c99 -o trove_cli -D_POSIX_C_SOURCE -Wall -Wextra -Werror -Wno-pointer-sign -O3``` | ||
|
||
_Windows build_ | ||
CLI | ||
CLI | ||
```cl trove.c shared.c encryption.c aes.c user32.lib /FeTrove_cli.exe /W3 /WX /FC /O2 /link``` | ||
GUI | ||
|
||
GUI | ||
```cl gui.c functions.c shared.c gui_encryption.c aes.c user32.lib /FeTrove.exe /W3 /WX /FC /O2 /link``` |