Skip to content

basicallygit/nacrypt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nacrypt

A simple and easy to use file encryption program made using libsodium

Usage

nacrypt <input_file> -o <output_file> [-e|-d]

Example

## Encrypt
nacrypt plaintext.txt -o plaintext.txt.encrypted -e

## Decrypt
nacrypt plaintext.txt.encryted -o plaintext_decrypted.txt -d

Building

Install libsodium

To build, simply run the makefile with:

make

Installation

make && sudo make install