Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
John Wingfield authored Nov 21, 2018
1 parent 1f0425f commit 1ebe532
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
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```

0 comments on commit 1ebe532

Please sign in to comment.