All Projects → jedisct1 → Encpipe

jedisct1 / Encpipe

Licence: other
The dum^H^H^Hsimplest encryption tool in the world.

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Encpipe

Discordcrypt
End-To-End File & Message Encryption For Discord
Stars: ✭ 150 (+11.11%)
Mutual labels:  security-tools, privacy, encryption
Securityprivacyreferencearchitecture
Open Repository for the Open Security and Privacy Reference Architecture
Stars: ✭ 73 (-45.93%)
Mutual labels:  security-tools, privacy
Cloakify
CloakifyFactory - Data Exfiltration & Infiltration In Plain Sight; Convert any filetype into list of everyday strings, using Text-Based Steganography; Evade DLP/MLS Devices, Defeat Data Whitelisting Controls, Social Engineering of Analysts, Evade AV Detection
Stars: ✭ 1,136 (+741.48%)
Mutual labels:  security-tools, privacy
Envkey App
Secure, human-friendly, cross-platform secrets and config.
Stars: ✭ 83 (-38.52%)
Mutual labels:  security-tools, encryption
Silence
PROJECT MOVED: https://git.silence.dev/Silence/Silence-Android/ (GitHub is just a mirror.)
Stars: ✭ 1,019 (+654.81%)
Mutual labels:  privacy, encryption
Drops
opmsg p2p transport network
Stars: ✭ 58 (-57.04%)
Mutual labels:  privacy, encryption
Brandis
Brandis: End-to-end encryption for everyone
Stars: ✭ 77 (-42.96%)
Mutual labels:  privacy, encryption
Ylva
Command line password manager for Unix-like operating systems
Stars: ✭ 23 (-82.96%)
Mutual labels:  security-tools, encryption
0fc
Anonymous web chat server, built on top of Themis/WebThemis
Stars: ✭ 98 (-27.41%)
Mutual labels:  privacy, encryption
Powershellarmoury
A PowerShell armoury for penetration testers or other random security guys
Stars: ✭ 99 (-26.67%)
Mutual labels:  security-tools, encryption
Privacy Respecting
Curated List of Privacy Respecting Services and Software
Stars: ✭ 1,663 (+1131.85%)
Mutual labels:  security-tools, privacy
Toxic
An ncurses-based Tox client (please make pull requests on the development fork: https://github.com/toktok/toxic)
Stars: ✭ 987 (+631.11%)
Mutual labels:  security-tools, privacy
Sephia Five
A secure and PGP enabled webmail module for Phosphorus Five
Stars: ✭ 21 (-84.44%)
Mutual labels:  privacy, encryption
Fhe Toolkit Linux
IBM Fully Homomorphic Encryption Toolkit For Linux. This toolkit is a Linux based Docker container that demonstrates computing on encrypted data without decrypting it! The toolkit ships with two demos including a fully encrypted Machine Learning inference with a Neural Network and a Privacy-Preserving key-value search.
Stars: ✭ 1,123 (+731.85%)
Mutual labels:  security-tools, encryption
Myassets
Custom filters and other resources to use with uBlock Origin and uMatrix.
Stars: ✭ 12 (-91.11%)
Mutual labels:  security-tools, privacy
Zbox
Zero-details, privacy-focused in-app file system.
Stars: ✭ 1,185 (+777.78%)
Mutual labels:  privacy, encryption
Databunker
Secure storage for personal records built to comply with GDPR
Stars: ✭ 122 (-9.63%)
Mutual labels:  privacy, encryption
Peergos
A p2p, secure file storage, social network and application protocol
Stars: ✭ 895 (+562.96%)
Mutual labels:  privacy, encryption
Lyra
A lightweight encryption tool designed for ease of use.
Stars: ✭ 22 (-83.7%)
Mutual labels:  privacy, encryption
Onionr
Private Decentralized Communication Network 🎭 🧅
Stars: ✭ 84 (-37.78%)
Mutual labels:  privacy, encryption

CodeQL scan

Encpipe

The dum^H^H^Hsimplest encryption tool in the world.

Usage

Encrypt a file using a password:

encpipe -e -p password -i inputfile -o outputfile

Decrypt a file using a password:

encpipe -d -p password -i inputfile -o outputfile

-i and -o can be set to - or omitted to read/write from the standard input/output.

-P password_file can be used to read the password, or an arbitrary long key (that doesn't have to be text) from a file.

If you don't feel inspired, -G prints a random password.

Example - encrypted file transfer:

nc -l 6666 | encpipe -d -p password
encpipe -e -p password -i /etc/passwd | nc 127.0.0.1 6666

Example - compressed, encrypted archives:

zstd -5 -v -c "$FILE" | encpipe -e -p "$PASSWD" -o "${FILE}.zst.encpipe"

Dependencies

None. It includes libhydrogen as a submodule. There is nothing to install.

Installation

make
sudo make install

Why

It was faster to write than remember how to use GnuPG and OpenSSL.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].