Skip to content

idlerun/openssl-encrypt

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
page title tags date
Simple OpenSSL File Encrypt/Decrypt
bash openssl
2016-05-06

Two paired CLI scripts which perform very simple AES-256 encryption of any file using openssl aes-256-cbc. A password is required for any encrypt or decrypt operations

encrypt.sh

decrypt.sh

Usage:

$ ls
1.jpg
2.jpg
$ ./encrypt.sh *.jpg
$ ls
1.jpg
1.jpg.enc
2.jpg
2.jpg.enc
$ rm *.jpg
$ ls
1.jpg.enc
2.jpg.enc
$ ./decrypt.sh *.enc
$ ls
1.jpg
1.jpg.enc
2.jpg
2.jpg.enc

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages