Picocrypt/src
2021-08-19 20:20:11 -04:00
..
resources Add files via upload 2021-08-19 20:18:30 -04:00
unstable Fix language dropdown 2021-08-19 20:20:11 -04:00
go.mod Add go.mod and go.sum 2021-08-11 12:25:16 -04:00
go.sum Add go.mod and go.sum 2021-08-11 12:25:16 -04:00
Picocrypt.go Finalize v1.16 2021-08-11 23:02:29 -04:00
README.md Incorporate go.mod and go.sum 2021-08-11 12:35:34 -04:00

Running From Source

If you would like to run Picocrypt from source, or an executable isn't available for your platform, you've come to the right place. Running from source is very simple, and I've made it even easier with these straightforward instructions. All you need is ten minutes and an Internet connection.

1. Prerequisites

Linux:

apt install -y gcc make libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libgl1-mesa-dev libxxf86vm-dev libgtk-3-dev xdg-utils libglu1-mesa xclip coreutils

macOS:

xcode-select --install

Windows: A C compiler, ideally TDM-GCC

2. Install the Go Programming Language

If you don't have Go installed, download the corresponding installer for Go from here, or from your package manager. Go 1.16 or later is required.

3. Get the Source Files

Download the source files as a zip from the homepage or git clone this repository.

4. Get Resources

Place all the files in the resources directory above into the same directory as Picocrypt.go.

5. If You're Not on Windows...

Windows requires a couple of extra lines to hide the command prompt window that shows when shredding a file. If you're not on Windows, however, you'll need to delete all occurrences of this line: cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow:true}. You'll also need to remove the import of syscall.

6. Build From Source

Finally, build Picocrypt from source:

  • Windows: go build -ldflags "-s -w -H=windowsgui -extldflags=-static" Picocrypt.go
  • macOS: go build -ldflags "-s -w" Picocrypt.go
  • Linux: go build -ldflags "-s -w" Picocrypt.go

7. Done!

You should now see a compiled executable (Picocrypt.exe/Picocrypt) in your directory. You can run it by double-clicking or executing it in your terminal. That wasn't too hard, right? Enjoy!