Picocrypt/src
2021-05-30 22:48:03 -04:00
..
archive Create README.md 2021-05-29 15:24:38 -04:00
unstable Update Picocrypt.go 2021-05-29 14:54:29 -04:00
Picocrypt.go Create Picocrypt.go 2021-05-29 15:23:22 -04:00
README.md Fixed giu version 2021-05-30 22:48:03 -04:00
sdelete64.exe Add files via upload 2021-03-26 11:45:45 -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 simple instructions. Note that the instructions are generic and will work on any platform.

  1. Prerequisites (only for Linux):
sudo apt-get install -y gcc make curl git tar wget xz-utils libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libgl1-mesa-dev libxxf86vm-dev libgtk-3-dev xdg-utils && sudo apt-get install -y libglx-dev || echo "" && sudo apt-get install -y xclip || sudo apt-get install xsel
  1. Install the Go Programming Language from here, or from your package manager. Go 1.16 or higher is recommended.
  2. Download the source file Picocrypt.go from above or git clone this repository.
  3. Install Picocrypt's Go dependencies (if macOS prompts you to install clang, do it and run this command again):
go get -u -v github.com/pkg/browser && go get -u -v github.com/zeebo/blake3 && go get -u -v golang.org/x/crypto/sha3 && go get -u -v golang.org/x/crypto/argon2 && go get -u -v github.com/AllenDang/giu@v0.5.4 && go get -u -v github.com/OpenDiablo2/dialog && go get -u -v golang.org/x/crypto/blake2b && go get -u -v golang.org/x/crypto/blake2s && go get -u -v github.com/atotto/clipboard && go get -u -v github.com/klauspost/reedsolomon && go get -u -v golang.org/x/crypto/chacha20poly1305 && go get -u -v github.com/HACKERALERT/Picocypher/monocypher
  1. Initialize Go and tidy the modules:
go mod init Picocrypt && go mod tidy
  1. Go to where Picocrypt.go is located and build from source:
  • Windows: go build -ldflags "-s -w -H=windowsgui -extldflags=-static" Picocrypt.go
  • macOS: go build -ldflags "-s -w -extldflags=-static" Picocrypt.go
  • Linux: go build -ldflags "-s -w" Picocrypt.go
  1. You should now see a built executable (Picocrypt.exe/Picocrypt.app/Picocrypt) in your directory. If you're on Windows, go and download the sdelete64.exe from the list above and place it in the same directory as Picocrypt.exe.
  2. You are now complete. Go ahead and run the executable you just built. Enjoy!