|
Prev: What to do with an old machine.
Next: Wap doldrums
From: Tony van der Hoff on 5 Jan 2008 08:53 Can anyone recommend a good in-line file encryption utility. I had a quick look at bcrypt, but that seems to be intersctive. I really want to be able to tar|bzip2|encript|ftp from a cron task. Cheers, Tony -- Tony van der Hoff | mailto:news_0711(a)vanderhoff.org Buckinghamshire, England
From: Tony van der Hoff on 5 Jan 2008 10:48 On 5 Jan at 14:41 Paul Martin <pm(a)zetnet.net> wrote in message <slrnfnv5or.uoe.pm(a)thinkpad.nowster.org.uk> [snip] > > Install openssl and look at "man enc". > That's great; thanks, Paul. -- Tony van der Hoff | mailto:news_0711(a)vanderhoff.org Buckinghamshire, England
From: C. on 7 Jan 2008 08:03 On 5 Jan, 13:53, Tony van der Hoff <n...(a)nospam.vanderhoff.org> wrote: > Can anyone recommend a good in-line file encryption utility. I had a quick > look at bcrypt, but that seems to be intersctive. > > I really want to be able to tar|bzip2|encript|ftp from a cron task. > > Cheers, > Tony > > -- > Tony van der Hoff | mailto:news_0...(a)vanderhoff.org > Buckinghamshire, England mcrypt for symmetric, GPG or openSSL for asymmetric. C.
From: Nick Craig-Wood on 8 Jan 2008 06:30 Tony van der Hoff <news(a)nospam.vanderhoff.org> wrote: > Can anyone recommend a good in-line file encryption utility. I had a quick > look at bcrypt, but that seems to be intersctive. > > I really want to be able to tar|bzip2|encript|ftp from a cron task. I would use an asymmetric cipher to avoid having the password in clear in the cron job. Eg use RSA, and encrypt the messages with your *public* key. You and only you will be able to decrypt them with your *private* key. You can do this with gnupg quite easily. Don't sign the messages otherwise you'll need to enter your password. You'll need to make sure you trust your own key ultimately also. Eg... $ cat test.txt This is a test file to be encrypted $ gpg -e -r FF3B54FA test.txt $ gpg -d test.txt.gpg You need a passphrase to unlock the secret key for user: "Nick Craig-Wood <nick(a)craig-wood.com>" 2048-bit ELG-E key, ID 6A4DDF21, created 2001-09-27 (main key ID FF3B54FA) gpg: encrypted with 2048-bit ELG-E key, ID 6A4DDF21, created 2001-09-27 "Nick Craig-Wood <nick(a)craig-wood.com>" This is a test file to be encrypted -- Nick Craig-Wood <nick(a)craig-wood.com> -- http://www.craig-wood.com/nick
|
Pages: 1 Prev: What to do with an old machine. Next: Wap doldrums |