Compare commits

...

4 Commits

Author SHA1 Message Date
Evan Su 71b03ef7d4
Update Changelog.md 2023-04-12 23:12:38 -04:00
Evan Su 6ac05ef69d
Bump version 2023-04-12 23:11:20 -04:00
Evan Su 5691e8109b
Update README.md 2023-04-12 23:10:24 -04:00
Evan Su c221405f25
Update CLI README 2023-04-12 22:44:45 -04:00
4 changed files with 5 additions and 5 deletions

View File

@ -2,6 +2,7 @@
<ul>
<li>✓ Added a command-line interface</li>
<li>Use Debian 11 as the base for the AppImage instead of Debian 10</li>
<li>Include software rendering DLLs in the Paranoid Pack for future proofing</li>
</ul>
# v1.31 (Released 11/18/2022)

View File

@ -167,6 +167,5 @@ Finally, thanks to these people/organizations for helping me out when needed:
<li>u/Tall_Escape for helping me test Picocrypt</li>
<li>u/NSABackdoors for doing plenty of testing</li>
<li>@samuel-lucas6 for feedback, suggestions, and support</li>
<li><a href="https://privacytools.io">PrivacyTools</a> for listing Picocrypt</li>
<li><a href="https://privacyguides.org">PrivacyGuides</a> for listing Picocrypt</li>
</ul>

View File

@ -1,5 +1,4 @@
# CLI
Before you dive in, keep in mind that the CLI is limited in functionality and not meant to replace the GUI in any remote way. It only works with volumes that don't use any keyfiles or advanced features, and you will still need the GUI to do anything more than basic file encryption. You should only use the CLI when you are not able to run the GUI or need an automatable interface for encrypting and decrypting files.
# Installation
@ -10,7 +9,8 @@ go install github.com/HACKERALERT/Picocrypt/cli/picocrypt@latest
You should now be able to run `picocrypt` in your terminal. If not, run `export PATH=$PATH:$(go env GOPATH)/bin` and try again.
# Usage
The CLI is designed to do one thing and one thing only: encrypt and decrypt a single file. Thus, it should be very simple to use:
```
picocrypt -p password <file>
```
The CLI is designed to do one thing and one thing only: encrypt and decrypt a single file. Its goal isn't to be full-blown encryption tool, but to provide the basics of file encryption so that you can do the rest. This allows you to write custom scripts to encrypt your weekly backups, secure client files on a server, etc.
It's basic by design, allowing you to use it as a secure building block for automating encryption, writing shell scripts, and so on.

View File

@ -2,7 +2,7 @@ package main
/*
Picocrypt v1.31
Picocrypt v1.32
Copyright (c) Evan Su
Released under a GNU GPL v3 License
https://github.com/HACKERALERT/Picocrypt
@ -58,7 +58,7 @@ var TRANSPARENT = color.RGBA{0x00, 0x00, 0x00, 0x00}
// Generic variables
var window *giu.MasterWindow
var version = "v1.31"
var version = "v1.32"
var dpi float32
var mode string
var working bool