Searching aescipher.exe or similar command line tool with AES encryption
I am searching for a command line (!) tool which en- and decrypts files and folders
with the well known AES algorithm. I should be able either to pass the password as parameter
resp. the program should ask the user for a password at the command line.
Can someone recommend me such a tool for WinXP ?
Again, it should not (only) be a GUI based encryption utility but a small, ressource friendly
command line based tool.
Marcus
Re: Searching aescipher.exe or similar command line tool with AESencryption
mmecky [at] yahoo.com (Marcus Mackler) (07-02-15 11:39:55):
> I am searching for a command line (!) tool which en- and decrypts
> files and folders with the well known AES algorithm. I should be able
> either to pass the password as parameter resp. the program should ask
> the user for a password at the command line.
>
> Can someone recommend me such a tool for WinXP ?
>
> Again, it should not (only) be a GUI based encryption utility but a
> small, ressource friendly command line based tool.
Here is an excerpt from `eix -sS aes':
app-crypt/aes-crypt
Abstract: Command line program ('aes') to encrypt and decrypt data using the Rijndael algorithm (BSD)
Homepages: http://my.cubic.ch/users/timtas/aes/
app-crypt/aespipe
Abstract: Encrypts data from stdin to stdout (GPL-2)
Homepages: http://loop-aes.sourceforge.net
Those are Unix/Linux programs in their original form, but mostly there
is a Windows version out there, so have a look at their homepages. If
not, you can compile most of these tools with the help of Cygwin [1] or
your native compiler, or with Dev-C++ [2] if you don't have any.
Regards,
E.S.
References:
[1] http://cygwin.com/
[2] http://bloodshed.net/dev/devcpp.html
Re: Searching aescipher.exe or similar command line tool with AES encryption
On Feb 15, 6:39 am, mme... [at] yahoo.com (Marcus Mackler) wrote:
> I am searching for a command line (!) tool which en- and decrypts files and folders
> with the well known AES algorithm.
The Rijndael home page has a reference implementation and a list of
links to other implementations:
http://www.iaik.tu-graz.ac.at/research/krypto/AES/old/%7Erij men/rijndael/
Re: Searching aescipher.exe or similar command line tool with AES encryption
In comp.security.misc Marcus Mackler <mmecky [at] yahoo.com> wrote:
> I am searching for a command line (!) tool which en- and decrypts files and folders
> with the well known AES algorithm.
www.gnupg.org
HTH,
VB.
--
"Pornography is an abstract phenomenon. It cannot exist without a medium
to propagate it, and it has very little (if anything at all) to do with sex."
Tina Lorenz
<https://events.congress.ccc.de/congress/2006/Fahrplan/events/1422.en.html>
Re: Searching aescipher.exe or similar command line tool with AESencryption
Volker Birk <bumens [at] dingens.org> (07-02-15 19:44:52):
> > I am searching for a command line (!) tool which en- and decrypts
> > files and folders with the well known AES algorithm.
>
> www.gnupg.org
Overkill in this case, and more effort necessary, as (at least in my
version) CAST5 is the default cipher.
Regards,
E.S.
Re: Searching aescipher.exe or similar command line tool with AES encryption
On 15 Feb 2007 11:39:55 GMT, Marcus Mackler <mmecky [at] yahoo.com> wrote:
> I am searching for a command line (!) tool which en- and
> decrypts files and folders with the well known AES
> algorithm. I should be able either to pass the password as
> parameter resp. the program should ask the user for a
> password at the command line.
gpg --cipher-algo aes -c filename.ext
--
To email me, substitute nowhere->spamcop, invalid->net.
Re: Searching aescipher.exe or similar command line tool with AES encryption
Ertugrul Soeylemez <usenet [at] streitmacht.eu> wrote:
> Volker Birk <bumens [at] dingens.org> (07-02-15 19:44:52):
> > > I am searching for a command line (!) tool which en- and decrypts
> > > files and folders with the well known AES algorithm.
> > www.gnupg.org
> Overkill in this case, and more effort necessary, as (at least in my
> version) CAST5 is the default cipher.
gpg -c --cipher-algo aes
YMMV
VB.
--
"Pornography is an abstract phenomenon. It cannot exist without a medium
to propagate it, and it has very little (if anything at all) to do with sex."
Tina Lorenz
<https://events.congress.ccc.de/congress/2006/Fahrplan/events/1422.en.html>