[ACCEPTED]-Best Blowfish command line tool?-blowfish
Accepted answer
http://www.openssl.org/docs/crypto/blowfish.html programming interface
http://www.openssl.org/docs/apps/enc.html command line interface
Example:
openssl enc -base64 -e -bf-cbc -in <infile> -out <outfile> -kfile <passphrase file>
(replace 1 -e
with -d
to decrypt)
I coudln't find one I liked; so I wrote 4 one in Go. Here it is: https://prologic.github.io/fish/
Example:
$ echo 'Hello World' | fish 3 -e -k mysecret -
Pretty easy to install with:
$ go 2 get github.com/prologic/fish
Also supports 1 both Blowfish and the newer Twofish
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.